From ca768ffc4ec944a8206caaffa0b7b1fd0301e9cc Mon Sep 17 00:00:00 2001
From: corenting <corenting@gmail.com>
Date: Thu, 12 Mar 2020 21:50:31 +0100
Subject: [PATCH] Bump to 1.0.0

No functional changes but it has now been tested enough to be promoted
stable
---
 README.md                 | 2 +-
 immutabledict/__init__.py | 2 +-
 pyproject.toml            | 8 ++++++--
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 421cf43..8b9c932 100644
--- a/README.md
+++ b/README.md
@@ -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.
 
diff --git a/immutabledict/__init__.py b/immutabledict/__init__.py
index 9801538..413cce0 100644
--- a/immutabledict/__init__.py
+++ b/immutabledict/__init__.py
@@ -5,7 +5,7 @@
 from collections import OrderedDict
 from collections.abc import Mapping
 
-__version__ = "0.2.0"
+__version__ = "1.0.0"
 
 
 class immutabledict(Mapping):
diff --git a/pyproject.toml b/pyproject.toml
index 36d678a..8c7c664 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -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"