Skip to content

Commit

Permalink
bump to 1.3.0 (fix #41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Corentin Garcia committed Apr 9, 2021
1 parent 5382871 commit 0e72d40
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Version 1.3.0

- Add typing. Thanks to [@aecay](https://github.com/aecay) for the [PR #45](https://github.com/corenting/immutabledict/pull/45).

# Version 1.2.0

- Support [PEP 584 union operators](https://www.python.org/dev/peps/pep-0584/). Thanks to @lambdalisue for the [PR #34](https://github.com/corenting/immutabledict/pull/34).
- Support [PEP 584 union operators](https://www.python.org/dev/peps/pep-0584/). Thanks to [@lambdalisue](https://github.com/lambdalisue) for the [PR #34](https://github.com/corenting/immutabledict/pull/34).

# Version 1.1.0

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,5 @@ print(my_item["a"]) # Print "value"

- Dropped support of Python < 3.6 (version 1.0.0 supports Python 3.5)
- Fixed `collections.Mapping` deprecation warning
- Typing
- [PEP 584 union operators](https://www.python.org/dev/peps/pep-0584/)
2 changes: 1 addition & 1 deletion immutabledict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Mapping(metaclass=_MappingMeta):
pass


__version__ = "1.2.0"
__version__ = "1.3.0"

_K = TypeVar("_K")
_V = TypeVar("_V")
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "immutabledict"
version = "1.2.0"
version = "1.3.0"
description = "Immutable wrapper around dictionaries (a fork of frozendict)"
authors = ["Corentin Garcia <corenting@gmail.com>"]
license = "MIT"
Expand All @@ -13,6 +13,7 @@ classifiers = [
]

[tool.poetry.urls]
"Changelog" = "https://github.com/corenting/immutabledict/blob/master/CHANGELOG.md"
"Bug Tracker" = "https://github.com/corenting/immutabledict/issues"

[tool.poetry.dependencies]
Expand Down

0 comments on commit 0e72d40

Please sign in to comment.