Skip to content

Commit

Permalink
Document in CHANGELOG the behaviour change of interpolate.
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Wobrock committed Sep 22, 2023
1 parent 407928e commit 0825d60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ Added
+++++
- Added support for ``interpolate`` parameter
`#495 <https://github.com/joke2k/django-environ/pull/495>`_.
This implies a breaking change on the ``interpolate`` parameter.
Before this change, ``Env(interpolate=True)`` and ``Env(interpolate=False)`` had the same
behaviour. After the change, ``Env(interpolate=False)`` won't substitute values anymore
that start with ``$``.


`v0.11.2`_ - 1-September-2023
Expand Down
2 changes: 1 addition & 1 deletion docs/tips.rst
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ The following example demonstrates the above:
Proxy value
===========

Values that being with a ``$`` may be interpolated. Pass ``interpolate=True`` to
Values that begin with a ``$`` may be interpolated. Pass ``interpolate=True`` to
``environ.Env()`` to enable this feature (``True`` by default):

.. code-block:: python
Expand Down

0 comments on commit 0825d60

Please sign in to comment.