Skip to content

Commit

Permalink
Bump version to 0.37.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamghill committed Nov 10, 2024
1 parent b2ebd2e commit 5766c56
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 9 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.37.0

- Automatically enable `dj-angles` if the library is installed.
- Experimental support for sub-domains.

**Breaking changes**

- Drop support for Python 3.8.
- Remove loading deprecated `data.json` file.

## 0.36.0

- Handle string, date, epoch in `publish_date` and convert them to timezone-aware datetime.
Expand Down Expand Up @@ -50,7 +60,7 @@
- Create example `Dockerfile` and `gunicorn.conf.py` files for easier deployments of `coltrane` apps.
- [Add the ability](installation.md#extras) to use [JSON5](https://json5.org) for data files.

_Breaking changes_
**Breaking changes**

- Remove loading `data.json`. All data should be in JSON files in the `data` directory.
- The default markdown renderer is now `mistune` instead of `markdown2`. The next version of `coltrane` will remove the option to use `markdown2`.
Expand Down Expand Up @@ -153,7 +163,7 @@ _Breaking changes_
- Serving of `/sitemap.xml` for standalone
- Automatic creation of `sitemap.xml` during `record` command

_Breaking changes_
**Breaking changes**

- `COLTRANE_SITE` is required in .env file

Expand Down
2 changes: 1 addition & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

1. `just install` to install the package and all extras
1. `just test` to run tests
1. `just build-docs` to build documentation
1. `just docs-build` to build documentation
1. Update version in `pyproject.toml`
1. Update CHANGELOG.md
1. Commit changes
Expand Down
14 changes: 12 additions & 2 deletions docs/source/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 0.37.0

- Automatically enable `dj-angles` if the library is installed.
- Experimental support for sub-domains.

**Breaking changes**

- Drop support for Python 3.8.
- Remove loading deprecated `data.json` file.

## 0.36.0

- Handle string, date, epoch in `publish_date` and convert them to timezone-aware datetime.
Expand Down Expand Up @@ -50,7 +60,7 @@
- Create example `Dockerfile` and `gunicorn.conf.py` files for easier deployments of `coltrane` apps.
- [Add the ability](installation.md#extras) to use [JSON5](https://json5.org) for data files.

_Breaking changes_
**Breaking changes**

- Remove loading `data.json`. All data should be in JSON files in the `data` directory.
- The default markdown renderer is now `mistune` instead of `markdown2`. The next version of `coltrane` will remove the option to use `markdown2`.
Expand Down Expand Up @@ -153,7 +163,7 @@ _Breaking changes_
- Serving of `/sitemap.xml` for standalone
- Automatic creation of `sitemap.xml` during `record` command

_Breaking changes_
**Breaking changes**

- `COLTRANE_SITE` is required in .env file

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
author = "Adam Hill"

pyproject = toml.load("../../pyproject.toml")
version = pyproject["tool"]["poetry"]["version"]
version = pyproject["project"]["version"]
release = version


Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ name = "coltrane"
authors = [
{name = "Adam Hill", email = "adam@adamghill.com"}
]
version = "0.36.0"
version = "0.37.0"
description = "A minimal app framework for content sites 🎵"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8,<4.0"
requires-python = ">=3.9,<4.0"
keywords = [
"django",
"python",
Expand Down Expand Up @@ -70,7 +70,7 @@ unicorn = [
"django-unicorn > 0"
]
docs = [
"Sphinx > 0",
"Sphinx > 7",
"linkify-it-py > 0",
"myst-parser > 0",
"furo > 0",
Expand Down

0 comments on commit 5766c56

Please sign in to comment.