From 93f7138ce1770180a6af675e3a7987111eb365d3 Mon Sep 17 00:00:00 2001 From: Tim Paine Date: Thu, 9 Mar 2023 13:29:17 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 3 +-- example_project_python/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c7d5262..26c8b27 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.1 +current_version = 0.1.0 commit = True tag = True @@ -10,4 +10,3 @@ replace = __version__ = "{new_version}" [bumpversion:file:pyproject.toml] search = version = "{current_version}" replace = version = "{new_version}" - diff --git a/example_project_python/__init__.py b/example_project_python/__init__.py index 19b2a9c..adcf8cd 100644 --- a/example_project_python/__init__.py +++ b/example_project_python/__init__.py @@ -1,3 +1,3 @@ from .hello import hello, print_hello -__version__ = "0.0.1" +__version__ = "0.1.0" diff --git a/pyproject.toml b/pyproject.toml index d8d1ae9..24c1c7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ name = "example-project-python" authors = [{name = "Your Name", email = "Your_Email@gmail.com"}] description="An example python project" readme = "README.md" -version = "0.0.1" +version = "0.1.0" requires-python = ">=3.7" dependencies = []