Skip to content

Commit

Permalink
Bump version, add release note about breaking change (#733)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaoming committed Oct 30, 2023
1 parent 9e3442a commit 85bce4e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ need to manually decorate those custom methods, like so:
def my_custom_method(*args, **kwargs):
# Awesome stuff
Note on serialization
---------------------

Expand Down
2 changes: 1 addition & 1 deletion djmoney/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "3.3.0"
__version__ = "3.4.0"

try:
import django
Expand Down
17 changes: 16 additions & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ Changelog

**Changed**

- (add entry here)


`3.4`_ - 2023-10-17
-------------------

.. note::

If you are using Django REST Framework or any other mechanism that relies on a custom serializer,
please note that you now manually have to register the serializer.
See :ref:`this code snippet <index:Note on serialization>`.

**Changed**

- Don't register Django Money serializers by default, instead the user should actively register a serializer in the ``settings.py`` `#636` (`emorozov`)


Expand Down Expand Up @@ -790,8 +804,9 @@ wrapping with ``money_manager``.

- Initial public release

.. _Unreleased: https:///github.com/django-money/django-money/compare/3.3...HEAD
.. _Unreleased: https:///github.com/django-money/django-money/compare/3.4...HEAD

.. _3.4: https:///github.com/django-money/django-money/compare/3.3...3.4
.. _3.3: https:///github.com/django-money/django-money/compare/3.2...3.3
.. _3.2: https:///github.com/django-money/django-money/compare/3.1...3.2
.. _3.1: https:///github.com/django-money/django-money/compare/3.0...3.1
Expand Down
4 changes: 4 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,12 @@
# ones.
extensions = [
'sphinx.ext.viewcode',
'sphinx.ext.autosectionlabel',
]

# Make sure the target is unique
autosectionlabel_prefix_document = True

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']

Expand Down

0 comments on commit 85bce4e

Please sign in to comment.