diff --git a/.bumpversion.cfg b/.bumpversion.cfg index bd5cddb..0ee40b8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.11.6 +current_version = 0.12.0 message = chore: bump version {current_version} → {new_version} commit = True tag = True diff --git a/CHANGELOG.md b/CHANGELOG.md index c5629bb..4336918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased ### Changed + +### Added + +### Dropped + +## [0.12.0] - 2024-12-29 +### Changed - Set thread count to 8 as per dramatiq default. Fix [#153]. ([@andrewgy8], [#170]) +- Use ArgumentDefaultsHelpFormatter to show the defaults for rundramatiq options. (#167) [@andrewgy8]: https://github.com/andrewgy8 [#153]: https://github.com/Bogdanp/django_dramatiq/issues/153 @@ -314,7 +322,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. [@rakanalh]: https://github.com/rakanalh -[Unreleased]: https://github.com/Bogdanp/django_dramatiq/compare/v0.10.0...HEAD +[Unreleased]: https://github.com/Bogdanp/django_dramatiq/compare/v0.12.0...HEAD +[0.12.0]: https://github.com/Bogdanp/django_dramatiq/compare/v0.11.6...v0.12.0 [0.10.0]: https://github.com/Bogdanp/django_dramatiq/compare/v0.9.1...v0.10.0 [0.9.1]: https://github.com/Bogdanp/django_dramatiq/compare/v0.9.0...v0.9.1 [0.9.0]: https://github.com/Bogdanp/django_dramatiq/compare/v0.8.0...v0.9.0 diff --git a/django_dramatiq/__init__.py b/django_dramatiq/__init__.py index be37974..ea370a8 100644 --- a/django_dramatiq/__init__.py +++ b/django_dramatiq/__init__.py @@ -1 +1 @@ -__version__ = "0.11.6" +__version__ = "0.12.0"