Skip to content

Commit

Permalink
Merge pull request #283 from corenting/chore/prepare-release
Browse files Browse the repository at this point in the history
chore: prepare next release
  • Loading branch information
corenting committed Nov 25, 2023
2 parents 883e09c + 4218165 commit 782623a
Show file tree
Hide file tree
Showing 5 changed files with 179 additions and 168 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
@@ -1,8 +1,9 @@
# Version 3.1.0 (unreleased)
# Version 4.0.0

- Replace `__init__` by `__new__`. Thanks to [@spacether](https://github.com/spacether) for the [PR #263](https://github.com/corenting/immutabledict/pull/263)
- Add explicit items()/keys()/values() methods to speedup these methods. Thanks to [@matthiasdiener](https://github.com/matthiasdiener) for the [PR #265](https://github.com/corenting/immutabledict/pull/265)
- Add set/delete/update functions. Thanks to [@matthiasdiener](https://github.com/matthiasdiener) for the [PR #271](https://github.com/corenting/immutabledict/pull/271)
- Add documentation at [immutabledict.corenting.fr](https://immutabledict.corenting.fr)

# Version 3.0.0

Expand Down
1 change: 1 addition & 0 deletions docs/conf.py
Expand Up @@ -41,6 +41,7 @@
"description": "An immutable wrapper around dictionaries",
"github_user": "corenting",
"github_repo": "immutabledict",
"github_type": "star",
"codecov_button": True,
"badge_branch": "master",
"sidebar_width": "300px",
Expand Down
2 changes: 1 addition & 1 deletion immutabledict/__init__.py
Expand Up @@ -16,7 +16,7 @@
ValuesView,
)

__version__ = "3.0.0"
__version__ = "4.0.0"

_K = TypeVar("_K")
_V = TypeVar("_V", covariant=True)
Expand Down

0 comments on commit 782623a

Please sign in to comment.