From b6e83111a0031af202c5e13136730d82862c04da Mon Sep 17 00:00:00 2001 From: Dan Mayo Date: Thu, 25 May 2023 17:27:18 +0100 Subject: [PATCH] Bump version v0.5.0-alpha -> v0.6.0-alpha --- README.rst | 10 +++++----- mocksafe/__init__.py | 2 +- pyproject.toml | 10 +++++----- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.rst b/README.rst index 71da5fa..7caf4f6 100644 --- a/README.rst +++ b/README.rst @@ -3,8 +3,8 @@ :alt: Github Actions Status .. image:: https://codecov.io/gh/dmayo3/mocksafe/branch/main/graph/badge.svg?token=S3JI6OOTGF :target: https://codecov.io/gh/dmayo3/mocksafe -.. image:: https://readthedocs.org/projects/mocksafe/badge/?version=0.5 - :target: https://mocksafe.readthedocs.io/en/0.5/?badge=0.5 +.. image:: https://readthedocs.org/projects/mocksafe/badge/?version=stable + :target: https://mocksafe.readthedocs.io/en/stable/?badge=stable :alt: Documentation Status .. image:: https://badge.fury.io/py/mocksafe.svg :target: https://badge.fury.io/py/mocksafe @@ -25,7 +25,7 @@ :target: https://github.com/dmayo3/mocksafe/blob/main/LICENSE :alt: MIT License -MockSafe v0.5.0-alpha +MockSafe v0.6.0-alpha --------------------- A mocking library developed to enable static and runtime type checking of your mocks to help keep them up-to-date with your production code. @@ -41,13 +41,13 @@ Install and quickstart pip install mocksafe -`Library Usage `_ +`Library Usage `_ Links ---------------------- :Install: `PyPi `_ -:Docs: `Read The Docs `_ +:Docs: `Read The Docs `_ :License: `MIT `_ :Source: `GitHub `_ :Issues: `GitHub Issues `_ diff --git a/mocksafe/__init__.py b/mocksafe/__init__.py index 8620f59..27ebdd9 100644 --- a/mocksafe/__init__.py +++ b/mocksafe/__init__.py @@ -21,4 +21,4 @@ from mocksafe.that import MockCalls -__version__ = "0.5.0-alpha" +__version__ = "0.6.0-alpha" diff --git a/pyproject.toml b/pyproject.toml index 7c64416..749fdda 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mocksafe" -version = "0.5.0-alpha" +version = "0.6.0-alpha" description = "A mocking library developed to enable static and runtime type checking of your mocks to keep them in sync with production code." @@ -32,7 +32,7 @@ keywords = ["mock", "mocking", "typed", "typing", "typesafe", "testing", "tests" dependencies = [] [project.urls] -Documentation = "https://mocksafe.readthedocs.io/en/0.5/" +Documentation = "https://mocksafe.readthedocs.io/en/0.6/" Source = "https://github.com/dmayo3/mocksafe" [build-system] @@ -40,7 +40,7 @@ build-backend = "setuptools.build_meta" requires = ["setuptools", "wheel"] [tool.bumpver] -current_version = "0.5.0-alpha" +current_version = "0.6.0-alpha" version_pattern = "MAJOR.MINOR.PATCH[-TAG]" commit_message = "Bump version {old_version} -> {new_version}" commit = true @@ -53,8 +53,8 @@ push = false 'version = "{version}"', ] "mocksafe/__init__.py" = [ - "{version}", + '__version__ = "{version}"', ] "README.rst" = [ - "{version}", + 'MockSafe v{version}', ]