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 as v0.17.0 #231

Merged
merged 1 commit into from
Feb 20, 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
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,14 @@ Maybe other versions are compatible, too.

## Changelog

* *dev* [compare v0.16.2...main](https://github.com/jedie/django-reversion-compare/compare/v0.16.2...main)
* *dev* [compare v0.17.0...main](https://github.com/jedie/django-reversion-compare/compare/v0.16.2...main)
* TBC
* v0.16.2 - 08.05.2023 [compare v0.16.2...v0.17.0](https://github.com/jedie/django-reversion-compare/compare/v0.16.2...v0.17.0)
* Remove Django 4.1 tests and add 5.0
* Remove Python 3.9 from test matrix (because Django 5.0 doesn't support it)
* Use `pretty_repr` from `rich` in `CompareObject`
* Modernize CSS styles and support dark theme
* Add `JSONField` to `VariantModel` test model
* v0.16.2 - 08.05.2023 [compare v0.16.1...v0.16.2](https://github.com/jedie/django-reversion-compare/compare/v0.16.1...v0.16.2)
* Bugfix compare a registered model that has a relation to a not registered model
* Fix links in README
Expand Down
2 changes: 1 addition & 1 deletion reversion_compare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
Add compare view to django-reversion for comparing two versions of a reversion model.
"""

__version__ = '0.16.2'
__version__ = '0.17.0'
__author__ = 'Jens Diemer <[email protected]>'
Loading