Skip to content

Commit

Permalink
v2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
provinzkraut committed Jan 27, 2024
1 parent d206dca commit 129a119
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
23 changes: 23 additions & 0 deletions docs/release-notes/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
2.x Changelog
=============

.. changelog:: 2.5.2
:date: 2024/01/27

.. change:: Ensure ``MultiDict`` and ``ImmutableMultiDict`` copy methods return the instance's type
:type: bugfix
:pr: 3009
:issue: 2549

Ensure :class:`~litestar.datastructures.MultiDict` and
:class:`~litestar.datastructures.ImmutableMultiDict` copy methods return a new
instance of ``MultiDict`` and ``ImmutableMultiDict``. Previously, these would
return a :class:`multidict.MultiDict` instance.

.. change:: Ensure ``exceptiongroup`` is installed on Python 3.11
:type: bugfix
:pr: 3035
:issue: 3029

Add the `exceptiongroup <https://github.com/agronholm/exceptiongroup>`_ package
as a required dependency on Python ``<3.11`` (previously ``<3.10``) as a
backport of `Exception Groups <https://docs.python.org/3/library/exceptions.html#exception-groups>`_


.. changelog:: 2.5.1
:date: 2024/01/18

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ maintainers = [
name = "litestar"
readme = "README.md"
requires-python = ">=3.8,<4.0"
version = "2.5.1"
version = "2.5.2"

[project.urls]
Blog = "https://blog.litestar.dev"
Expand Down
2 changes: 1 addition & 1 deletion tools/prepare_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class ChangelogEntryWriter:
def __init__(self) -> None:
self.text = ""
self._level = 0
self._indent = " "
self._indent = " "
self._cc_type_map = {"fix": "bugfix", "feat": "feature"}

def add_line(self, line: str) -> None:
Expand Down

0 comments on commit 129a119

Please sign in to comment.