Skip to content

Commit

Permalink
Bump version: 0.8.0 → 0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tibordp committed Apr 8, 2021
1 parent a0e6279 commit c8c2a07
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.8.0
current_version = 0.8.1
commit = True
tag = True

Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
Changelog
=========

0.8.1 (2021-04-08)
------------------

* Improve performance for calculation of the next execution time
* Add ability for repositories to pass a pagination token
* Add `add_to_context()` to inject static data to context
* Clean up documentation and add additional examples


0.8.0 (2021-04-05)
------------------

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.8.0.svg
.. |commits-since| image:: https://img.shields.io/github/commits-since/tibordp/pyncette/v0.8.1.svg
:alt: Commits since latest release
:target: https://github.com/tibordp/pyncette/compare/v0.8.0...master
:target: https://github.com/tibordp/pyncette/compare/v0.8.1...master



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
year = "2019"
author = "Tibor Djurica Potpara"
copyright = "{0}, {1}".format(year, author)
version = release = "0.8.0"
version = release = "0.8.1"

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 @@ -34,7 +34,7 @@ def read(*names, **kwargs):

setup(
name="pyncette",
version="0.8.0",
version="0.8.1",
license="MIT",
description="A reliable distributed scheduler with pluggable storage backends",
long_description="%s\n%s"
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.8.0"
__version__ = "0.8.1"

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

0 comments on commit c8c2a07

Please sign in to comment.