From 7d91ac32061b17d8a6694cef7867932be706e301 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Sun, 4 Sep 2022 10:35:39 +0200 Subject: [PATCH] Fix: change version --- 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 485f44a..ae73625 100644 --- a/clean_rst/__init__.py +++ b/clean_rst/__init__.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.1.3" diff --git a/pyproject.toml b/pyproject.toml index 019c9c2..f8ed91d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "clean-rst" -version = "0.1.1" +version = "0.1.3" 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 1516a56..0747ded 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.1" + assert __version__ == "0.1.3"