From a657ccf4912452c73f81348fcb8ba5ec01b4d41d Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Mon, 22 Aug 2022 21:12:03 +0200 Subject: [PATCH] Core: change version number --- clean_rst/__init__.py | 2 +- pyproject.toml | 2 +- tests/test_clean_rst.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/clean_rst/__init__.py b/clean_rst/__init__.py index 3dc1f76..485f44a 100644 --- a/clean_rst/__init__.py +++ b/clean_rst/__init__.py @@ -1 +1 @@ -__version__ = "0.1.0" +__version__ = "0.1.1" diff --git a/pyproject.toml b/pyproject.toml index 45c8ab7..6d72503 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clean-rst" -version = "0.1.0" +version = "0.1.1" description = "pre-commit to clean rst index files" authors = ["Bertrand Benjamin "] diff --git a/tests/test_clean_rst.py b/tests/test_clean_rst.py index 93d8d0d..1516a56 100644 --- a/tests/test_clean_rst.py +++ b/tests/test_clean_rst.py @@ -2,4 +2,4 @@ from clean_rst import __version__ def test_version(): - assert __version__ == "0.1.0" + assert __version__ == "0.1.1"