Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.12.0 #172

Merged
merged 1 commit into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion django_dramatiq/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.11.6"
__version__ = "0.12.0"
Loading