Skip to content

Commit

Permalink
Bump version v0.4.1-alpha -> v0.5.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
dmayo3 committed May 24, 2023
1 parent 8ffb44a commit 63219d1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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=latest
:target: https://mocksafe.readthedocs.io/en/latest/?badge=latest
.. image:: https://readthedocs.org/projects/mocksafe/badge/?version=0.5
:target: https://mocksafe.readthedocs.io/en/0.5/?badge=0.5
:alt: Documentation Status
.. image:: https://badge.fury.io/py/mocksafe.svg
:target: https://badge.fury.io/py/mocksafe
Expand All @@ -22,7 +22,7 @@
:target: https://github.com/dmayo3/mocksafe/blob/main/LICENSE
:alt: MIT License

MockSafe v0.4.1-alpha
MockSafe v0.5.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.
Expand All @@ -38,13 +38,13 @@ Install and quickstart

pip install mocksafe

`Library Usage <https://mocksafe.readthedocs.io/en/latest/usage.html>`_
`Library Usage <https://mocksafe.readthedocs.io/en/0.5/usage.html>`_

Links
----------------------

:Install: `PyPi <https://pypi.org/project/mocksafe>`_
:Docs: `Read The Docs <https://mocksafe.readthedocs.io/en/0.4/>`_
:Docs: `Read The Docs <https://mocksafe.readthedocs.io/en/0.5/>`_
:License: `MIT <https://github.com/dmayo3/mocksafe/blob/main/LICENSE>`_
:Source: `GitHub <https://github.com/dmayo3/mocksafe>`_
:Issues: `GitHub Issues <https://github.com/dmayo3/mocksafe/issues>`_
Expand Down
2 changes: 1 addition & 1 deletion mocksafe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
from mocksafe.that import MockCalls


__version__ = "0.4.1-alpha"
__version__ = "0.5.0-alpha"
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mocksafe"
version = "0.4.1-alpha"
version = "0.5.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."

Expand Down Expand Up @@ -32,15 +32,15 @@ keywords = ["mock", "mocking", "typed", "typing", "typesafe", "testing", "tests"
dependencies = []

[project.urls]
Documentation = "https://mocksafe.readthedocs.io"
Documentation = "https://mocksafe.readthedocs.io/en/0.5/"
Source = "https://github.com/dmayo3/mocksafe"

[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "wheel"]

[tool.bumpver]
current_version = "0.4.1-alpha"
current_version = "0.5.0-alpha"
version_pattern = "MAJOR.MINOR.PATCH[-TAG]"
commit_message = "Bump version {old_version} -> {new_version}"
commit = true
Expand Down

0 comments on commit 63219d1

Please sign in to comment.