Skip to content

Commit

Permalink
Merge pull request etianen#949 from chicheng/patch-4
Browse files Browse the repository at this point in the history
Fix typo in CHANGELOG.rst
  • Loading branch information
etianen authored Oct 10, 2023
2 parents b88c05a + 4d51da9 commit a8ada8c
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,15 +107,16 @@ django-reversion changelog
- Packaging improvements (@michael-k).
- Removing deprecated usages of `force_text` (@Tenzer).
- Documentation fixes (@chicheng).
- Drops Python 2.7 compatibility.


3.0.5 - 2019-02-12
3.0.5 - 2019-12-02
------------------

- Improved performance of `get_deleted` for large datasets (@jeremy-engel).
- Django 3.0 compatibility (@claudep).
- Drops Django < 1.11 compatibility (@claudep).
- Fixed errors in manageement commands when `django.contrib.admin` is not in `INSTALLED_APPS` (@irtimir).
- Fixed errors in management commands when `django.contrib.admin` is not in `INSTALLED_APPS` (@irtimir).


3.0.4 - 2019-05-22
Expand Down Expand Up @@ -160,7 +161,7 @@ django-reversion changelog
------------------

- **Breaking:** ``Revision.comment`` now contains the raw JSON change message generated by django admin, rather than
a string. Accesing ``Revision.comment`` directly is no longer recommended. Instead, use ``Revision.get_comment()``.
a string. Accessing ``Revision.comment`` directly is no longer recommended. Instead, use ``Revision.get_comment()``.
(@RamezIssac).
- **BREAKING:** django-reversion now uses ``_base_manager`` to calculate deleted models, not ``_default_manager``. This
change will only affect models that perform default filtering in their ``_default_manager`` (@ivissani).
Expand Down Expand Up @@ -517,7 +518,7 @@ Models

.. code:: python
# New-style import for accesssing admin class.
# New-style import for accessing admin class.
from reversion.admin import VersionAdmin
# Use the admin class directly.
Expand All @@ -544,7 +545,7 @@ Models

.. code:: python
# New-style import for accesssing the low-level API.
# New-style import for accessing the low-level API.
from reversion import revisions as reversion
# Use low-level API methods from the revisions namespace.
Expand All @@ -569,7 +570,7 @@ Models

.. code:: python
# New-style import for accesssing the reversion signals.
# New-style import for accessing the reversion signals.
from reversion.signals import pre_revision_commit, post_revision_commit
# Use reversion signals directly.
Expand Down Expand Up @@ -698,7 +699,7 @@ Models
----------------

* Django 1.5 compatibility.
* Experimantal Python 3.3 compatibility!
* Experimental Python 3.3 compatibility!


1.6.6 - 12/02/2013
Expand Down Expand Up @@ -738,7 +739,7 @@ Models
------------------

* Swedish translation.
* Fixing formating for PyPi readme and license.
* Fixing formatting for PyPi readme and license.
* Minor features and bugfixes.


Expand Down Expand Up @@ -802,8 +803,8 @@ Models
* Added Polish translation.
* Added French translation.
* Improved resilience of unit tests.
* Improved scaleability of Version.object.get_deleted() method.
* Improved scaleability of createinitialrevisions command.
* Improved scalability of Version.object.get_deleted() method.
* Improved scalability of createinitialrevisions command.
* Removed post_syncdb hook.
* Added new createinitialrevisions management command.
* Fixed DoesNotExistError with OneToOneFields and follow.
Expand Down

0 comments on commit a8ada8c

Please sign in to comment.