diff --git a/multicounter/__init__.py b/multicounter/__init__.py index 8be9299..5d6a88a 100644 --- a/multicounter/__init__.py +++ b/multicounter/__init__.py @@ -4,6 +4,6 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -__version__ = "0.1.0" +__version__ = "0.1.1" from .multicounter import MultiCounter diff --git a/pyproject.toml b/pyproject.toml index 72de154..e2d6e3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "multicounter" -version = "0.1.0" +version = "0.1.1" description = "A simple, elegant counter with support for counting multiple things at once." authors = ["Joseph Hale "] diff --git a/tests/test_multicounter.py b/tests/test_multicounter.py index 916ed18..2710d8b 100644 --- a/tests/test_multicounter.py +++ b/tests/test_multicounter.py @@ -15,7 +15,7 @@ def mc(): def test_version(): - assert __version__ == "0.1.0" + assert __version__ == "0.1.1" def test_new_multicounter_has_no_counters(mc):