Skip to content

Commit

Permalink
set version to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
semiversus committed Sep 30, 2018
1 parent 36f26e1 commit f23f7ac
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Synopsis
========

+--------------------------------------------------------------------------------+
| This is version 0.9 and is here to prepare version 1.0. |
| **Broqer 1.0.0 will be released soon (till end of october 2018) - stay tuned** |
+--------------------------------------------------------------------------------+

Expand Down
2 changes: 1 addition & 1 deletion broqer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

__author__ = 'Günther Jena'
__email__ = 'guenther@jena.at'
__version__ = '0.6.0-dev'
__version__ = '0.9.0'

__all__ = [
'StatefulPublisher', 'Disposable', 'Publisher', 'Subscriber',
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
project = 'broqer'
copyright = u'2018, Günther Jena'
author = u'Günther Jena'
version = '0.6.0-dev'
version = '0.9.0'

extensions = [
'sphinx.ext.autodoc',
Expand Down
11 changes: 6 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[bumpversion]
current_version = 0.6.0-dev
current_version = 0.9.0
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)(-(?P<release>[a-z]+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}
{major}.{minor}.{patch}

[bumpversion:part:release]
optional_value = gamma
values =
values =
dev
gamma

Expand All @@ -33,10 +33,11 @@ branch = True

[coverage:report]
precision = 1
exclude_lines =
exclude_lines =
if TYPE_CHECKING:

[tool:pytest]
testpaths = test broqer
doctest_optionflags = ELLIPSIS
addopts = --cov-report=html --cov-report=term-missing:skip-covered --no-cov-on-fail -q --cov=broqer --doctest-modules
addopts = --cov-report=html --cov-report=term-missing:skip-covered --no-cov-on-fail -q --cov=broqer --doctest-modules

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
packages=find_packages(),
test_suite='tests',
url='https://github.com/semiversus/python-broqer',
version='0.6.0-dev',
version='0.9.0',
zip_safe=False,
)

0 comments on commit f23f7ac

Please sign in to comment.