Skip to content

Commit d1f1159

Browse files
joke2kCopilot
andcommitted
Release 0.13.0
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent d82e361 commit d1f1159

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

CHANGELOG.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,36 @@ All notable changes to this project will be documented in this file.
55
The format is inspired by `Keep a Changelog <https://keepachangelog.com/en/1.0.0/>`_
66
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
77

8+
`v0.13.0`_ - 18-February-2026
9+
-----------------------------
10+
Added
11+
+++++
12+
- Added optional warnings when defaults are used
13+
`#582 <https://github.com/joke2k/django-environ/pull/582>`_.
14+
- Added `choices` argument support for value validation in ``Env.str(...)``
15+
`#555 <https://github.com/joke2k/django-environ/pull/555>`_.
16+
- Added Valkey support via ``valkey://`` and ``valkeys://`` cache URL schemes
17+
`#554 <https://github.com/joke2k/django-environ/pull/554>`_.
18+
- Added support for ``rediss://`` scheme in channels URL parsing
19+
`#573 <https://github.com/joke2k/django-environ/pull/573>`_.
20+
- Added django-prometheus database backend aliases to DB URL parsing schemes
21+
`#559 <https://github.com/joke2k/django-environ/pull/559>`_.
22+
23+
Changed
24+
+++++++
25+
- Declared support for Python 3.14
26+
`#580 <https://github.com/joke2k/django-environ/pull/580>`_.
27+
- Declared support for Django 5.2 and Django 6.0
28+
`#578 <https://github.com/joke2k/django-environ/pull/578>`_.
29+
30+
Fixed
31+
+++++
32+
- Improved type hint coverage and related lint issues
33+
`#546 <https://github.com/joke2k/django-environ/pull/546>`_.
34+
- Fixed typos in the FAQ page
35+
`#445 <https://github.com/joke2k/django-environ/pull/445>`_.
36+
37+
838
`v0.12.1`_ - 13-February-2026
939
-----------------------------
1040
Fixed
@@ -434,6 +464,7 @@ Added
434464
- Initial release.
435465

436466

467+
.. _v0.13.0: https://github.com/joke2k/django-environ/compare/v0.12.1...v0.13.0
437468
.. _v0.12.1: https://github.com/joke2k/django-environ/compare/v0.12.0...v0.12.1
438469
.. _v0.12.0: https://github.com/joke2k/django-environ/compare/v0.11.2...v0.12.0
439470
.. _v0.11.2: https://github.com/joke2k/django-environ/compare/v0.11.1...v0.11.2

environ/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
__copyright__ = 'Copyright (C) 2013-2026 Daniele Faraglia'
2323
"""The copyright notice of the package."""
2424

25-
__version__ = '0.12.1'
25+
__version__ = '0.13.0'
2626
"""The version of the package."""
2727

2828
__license__ = 'MIT'

0 commit comments

Comments
 (0)