From 0e72d40e0dbf28bc63dbc534c16ab5c950a09feb Mon Sep 17 00:00:00 2001 From: Corentin Garcia Date: Fri, 9 Apr 2021 09:34:12 +0200 Subject: [PATCH] bump to 1.3.0 (fix #41) --- CHANGELOG.md | 6 +++++- README.md | 2 ++ immutabledict/__init__.py | 2 +- pyproject.toml | 3 ++- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 45adf01..37a33e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 079daaf..8afc3f4 100644 --- a/README.md +++ b/README.md @@ -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/) diff --git a/immutabledict/__init__.py b/immutabledict/__init__.py index 0cbdac4..aa84029 100644 --- a/immutabledict/__init__.py +++ b/immutabledict/__init__.py @@ -15,7 +15,7 @@ class Mapping(metaclass=_MappingMeta): pass -__version__ = "1.2.0" +__version__ = "1.3.0" _K = TypeVar("_K") _V = TypeVar("_V") diff --git a/pyproject.toml b/pyproject.toml index c3a5b15..482e7d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 "] license = "MIT" @@ -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]