From 4ceff046163a5811a8f0f1ae445bc6e7c36b5989 Mon Sep 17 00:00:00 2001 From: Nikita Tsvetkov Date: Wed, 27 Apr 2022 19:49:36 +0300 Subject: [PATCH] =?UTF-8?q?bump=20version=20=E2=86=92=201.0.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup.cfg | 2 +- setup.py | 2 +- vedro_gitlab_reporter/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index 16a19e2..348690b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.0.1 message = bump version → {new_version} commit = True tag = True diff --git a/setup.py b/setup.py index 3815977..32bb1aa 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def find_dev_required(): setup( name="vedro-gitlab-reporter", - version="1.0.0", + version="1.0.1", description="GitLab reporter with collapsable sections for Vedro framework", long_description=open("README.md").read(), long_description_content_type="text/markdown", diff --git a/vedro_gitlab_reporter/__init__.py b/vedro_gitlab_reporter/__init__.py index 887e85d..0ee3736 100644 --- a/vedro_gitlab_reporter/__init__.py +++ b/vedro_gitlab_reporter/__init__.py @@ -1,4 +1,4 @@ from ._gitlab_reporter import GitlabCollapsableMode, GitlabReporter, GitlabReporterPlugin -__version__ = "1.0.0" +__version__ = "1.0.1" __all__ = ("GitlabReporter", "GitlabReporterPlugin", "GitlabCollapsableMode",)