Skip to content

Commit

Permalink
Bump version: 0.9.0 → 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tibordp committed May 8, 2023
1 parent 94a6ab0 commit 1cabcd2
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.9.0
current_version = 0.10.0
commit = True
tag = True

Expand All @@ -21,4 +21,4 @@ replace = __version__ = "{new_version}"

[bumpversion:file:CHANGELOG.rst]
search = Unreleased
replace = {new_version} ({now:%Y-%m-%d})
replace = {new_version} ({now:%Y-%m-%d})
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Changelog
=========

Unreleased
0.10.0 (2023-05-08)
------------------

* Drop support for Python 3.7
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ Overview
:alt: Supported implementations
:target: https://pypi.org/project/pyncette

.. |commits-since| image:: https://img.shields.io/github/commits-since/tibordp/pyncette/v0.9.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/tibordp/pyncette/v0.10.0.svg
:alt: Commits since latest release
:target: https://github.com/tibordp/pyncette/compare/v0.9.0...master
:target: https://github.com/tibordp/pyncette/compare/v0.10.0...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
year = "2019"
author = "Tibor Djurica Potpara"
copyright = f"{year}, {author}"
version = release = "0.9.0"
version = release = "0.10.0"

pygments_style = "trac"
templates_path = ["."]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(*names, **kwargs):

setup(
name="pyncette",
version="0.9.0",
version="0.10.0",
license="MIT",
description="A reliable distributed scheduler with pluggable storage backends",
long_description="{}\n{}".format(
Expand Down
2 changes: 1 addition & 1 deletion src/pyncette/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.9.0"
__version__ = "0.10.0"

from .model import Context
from .model import ExecutionMode
Expand Down

0 comments on commit 1cabcd2

Please sign in to comment.