diff --git a/NEWS.md b/NEWS.md index 206a115..a064acc 100644 --- a/NEWS.md +++ b/NEWS.md @@ -3,3 +3,20 @@ + +## [0.2.3](https://github.com/mcflugen/compaction/tree/0.2.3) - 2023-11-21 + + +### Other Changes and Additions + +- Set up [towncrier](https://towncrier.readthedocs.io/en/stable/index.html) + to manage the changelog. [#16](https://github.com/mcflugen/compaction/issues/16) +- Added a [pre-commit](https://pre-commit.com/) hook file for running + the linters. [#16](https://github.com/mcflugen/compaction/issues/16) +- Added a [nox](https://nox.thea.codes/en/stable/) file for routine + project management like running the tests and linting. [#16](https://github.com/mcflugen/compaction/issues/16) +- Added GitHub Actions for running the continuous integration tests, which + includes running the tests and linters. [#16](https://github.com/mcflugen/compaction/issues/16) +- Moved static project metadata from *setup.py* to the now standard + *pyproject.toml*. [#16](https://github.com/mcflugen/compaction/issues/16) +- Added support for Python 3.12 and dropped support for Python 3.9. [#19](https://github.com/mcflugen/compaction/issues/19) diff --git a/news/16.misc.1 b/news/16.misc.1 deleted file mode 100644 index 187367b..0000000 --- a/news/16.misc.1 +++ /dev/null @@ -1,3 +0,0 @@ - -Moved static project metadata from *setup.py* to the now standard -*pyproject.toml*. diff --git a/news/16.misc.2 b/news/16.misc.2 deleted file mode 100644 index 101f7d5..0000000 --- a/news/16.misc.2 +++ /dev/null @@ -1,3 +0,0 @@ - -Added a [nox](https://nox.thea.codes/en/stable/) file for routine -project management like running the tests and linting. diff --git a/news/16.misc.3 b/news/16.misc.3 deleted file mode 100644 index 588bfb3..0000000 --- a/news/16.misc.3 +++ /dev/null @@ -1,3 +0,0 @@ - -Added a [pre-commit](https://pre-commit.com/) hook file for running -the linters. diff --git a/news/16.misc.4 b/news/16.misc.4 deleted file mode 100644 index 3298f29..0000000 --- a/news/16.misc.4 +++ /dev/null @@ -1,3 +0,0 @@ - -Set up [towncrier](https://towncrier.readthedocs.io/en/stable/index.html) -to manage the changelog. diff --git a/news/16.misc.5 b/news/16.misc.5 deleted file mode 100644 index ace1c9c..0000000 --- a/news/16.misc.5 +++ /dev/null @@ -1,3 +0,0 @@ - -Added GitHub Actions for running the continuous integration tests, which -includes running the tests and linters. diff --git a/news/19.misc b/news/19.misc deleted file mode 100644 index 3d0bd59..0000000 --- a/news/19.misc +++ /dev/null @@ -1,2 +0,0 @@ - -Added support for Python 3.12 and dropped support for Python 3.9. diff --git a/src/compaction/_version.py b/src/compaction/_version.py index 430a236..d31c31e 100644 --- a/src/compaction/_version.py +++ b/src/compaction/_version.py @@ -1 +1 @@ -__version__ = "0.2.3b2" +__version__ = "0.2.3"