Skip to content

Commit

Permalink
Merge pull request #55 from corenting/release_2.1.0
Browse files Browse the repository at this point in the history
version 2.1.0
  • Loading branch information
corenting authored Jul 16, 2021
2 parents cb590b0 + 6ca5ae6 commit 7ed735a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Version 2.0
# Version 2.1.0

- Fix type annotation on keyword argument in copy(**add_or_replace). Thanks to [@techsy730](https://github.com/techsy730) for the [PR #54](https://github.com/corenting/immutabledict/pull/54).

# Version 2.0.0

- Support more typing (fix [issue #47](https://github.com/corenting/immutabledict/issues/47))
- ⚠️ Remove `*args, **kwargs` from the `fromkeys()` method.


# Version 1.3.0

- Add typing. Thanks to [@aecay](https://github.com/aecay) for the [PR #45](https://github.com/corenting/immutabledict/pull/45).
Expand Down
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__ = "2.0.0"
__version__ = "2.1.0"

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

0 comments on commit 7ed735a

Please sign in to comment.