Skip to content

Commit

Permalink
Bump to 1.0.0
Browse files Browse the repository at this point in the history
No functional changes but it has now been tested enough to be promoted
stable
  • Loading branch information
corenting committed Mar 12, 2020
1 parent de4d566 commit ca768ff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# immutabledict

![PyPI](https://img.shields.io/pypi/v/immutabledict) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/immutabledict) ![License](https://img.shields.io/pypi/l/immutabledict) ![Build](https://img.shields.io/travis/com/corenting/immutabledict) ![Codecov](https://img.shields.io/codecov/c/github/corenting/immutabledict)
![PyPI](https://img.shields.io/pypi/v/immutabledict) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/immutabledict) ![License](https://img.shields.io/pypi/l/immutabledict) ![Build](https://img.shields.io/travis/com/corenting/immutabledict) ![Codecov](https://img.shields.io/codecov/c/github/corenting/immutabledict) ![PyPI - Downloads](https://img.shields.io/pypi/dm/immutabledict)

A fork of ``frozendict``, an immutable wrapper around dictionaries.

Expand Down
2 changes: 1 addition & 1 deletion immutabledict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from collections import OrderedDict
from collections.abc import Mapping

__version__ = "0.2.0"
__version__ = "1.0.0"


class immutabledict(Mapping):
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
[tool.poetry]
name = "immutabledict"
version = "0.2.0"
description = "Immutable wrapper around dictionaries"
version = "1.0.0"
description = "Immutable wrapper around dictionaries (a fork of frozendict)"
authors = ["Corentin Garcia <corenting@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/corenting/immutabledict"
keywords = ["immutable", "dictionary"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Python Modules"
]

[tool.poetry.urls]
"Bug Tracker" = "https://github.com/corenting/immutabledict/issues"
Expand Down

0 comments on commit ca768ff

Please sign in to comment.