Skip to content

Commit

Permalink
Bump version: 0.3.0 → 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kiudee committed Aug 2, 2020
1 parent e4a21b8 commit de01645
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 33 deletions.
48 changes: 24 additions & 24 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
[bumpversion]
current_version = 0.3.0
commit = True
tag = True

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:tune/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bdist_wheel]
universal = 1

[flake8]
exclude = docs

[aliases]
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']
[bumpversion]
current_version = 0.4.0
commit = True
tag = True

[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"

[bumpversion:file:tune/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bdist_wheel]
universal = 1

[flake8]
exclude = docs

[aliases]
test = pytest

[tool:pytest]
collect_ignore = ['setup.py']
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/kiudee/chess-tuning-tools",
version="0.3.0",
version="0.4.0",
zip_safe=False,
)
16 changes: 8 additions & 8 deletions tune/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""Top-level package for Chess Tuning Tools."""

__author__ = """Karlson Pfannschmidt"""
__email__ = "kiudee@mail.upb.de"
__version__ = "0.3.0"

from tune.utils import expected_ucb
from tune.db_workers import TuningClient, TuningServer
"""Top-level package for Chess Tuning Tools."""

__author__ = """Karlson Pfannschmidt"""
__email__ = "kiudee@mail.upb.de"
__version__ = "0.4.0"

from tune.utils import expected_ucb
from tune.db_workers import TuningClient, TuningServer

0 comments on commit de01645

Please sign in to comment.