From da7f89dff7b1c4397d5aa216a316b5cc19a67fdd Mon Sep 17 00:00:00 2001 From: Joseph Hale Date: Mon, 23 May 2022 17:47:02 -0700 Subject: [PATCH] Bump `MultiCounter` to v0.1.1 --- multicounter/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_multicounter.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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): -- 2.51.2