Skip to content

Commit a7d5dd5

Browse files
authored
Merge pull request #68 from corenting/feat/release-2.2.3
feat: release 2.2.3
2 parents f32d1fd + a09a38f commit a7d5dd5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# Version 2.2.3
2+
3+
- Fix TypeError message when using `|=`. Thanks to [@ronshapiro](https://github.com/ronshapiro) for the [PR #66](https://github.com/corenting/immutabledict/pull/66)
4+
- Update docstring for ImmutableOrderedDict to indicate that is not needed anymore for Python >= 3.7 but kept for compatibility purposes
5+
- Use postponed evaluation of annotations ([PEP 563](https://peps.python.org/pep-0563/)) for the typing
6+
17
# Version 2.2.2
28

39
- Update classifiers, Github Actions... for Python 3.11 (no code changes)

immutabledict/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from collections import OrderedDict
44
from typing import Any, Dict, Iterable, Iterator, Mapping, Optional, Type, TypeVar
55

6-
__version__ = "2.2.2"
6+
__version__ = "2.2.3"
77

88
_K = TypeVar("_K")
99
_V = TypeVar("_V")

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "immutabledict"
3-
version = "2.2.2"
3+
version = "2.2.3"
44
description = "Immutable wrapper around dictionaries (a fork of frozendict)"
55
authors = ["Corentin Garcia <corenting@gmail.com>"]
66
license = "MIT"

0 commit comments

Comments
 (0)