Skip to content

Commit

Permalink
Bump version: 0.6.0-beta.0 → 0.6.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kiudee committed Aug 24, 2020
1 parent 4215024 commit 979fe8d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "chess-tuning-tools"
version = "0.6.0-beta.0"
version = "0.6.0-beta.1"
description = "A collection of tools for local and distributed tuning of chess engines."
authors = ["Karlson Pfannschmidt <kiudee@mail.upb.de>"]
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[bumpversion]
current_version = 0.6.0-beta.0
current_version = 0.6.0-beta.1
commit = True
tag = True
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?(\.(?P<build>\d+))?
serialize =
serialize =
{major}.{minor}.{patch}-{release}.{build}
{major}.{minor}.{patch}

Expand All @@ -18,7 +18,7 @@ replace = __version__ = "{new_version}"
[bumpversion:part:release]
first_value = release
optional_value = release
values =
values =
beta
rc
release
Expand Down
2 changes: 1 addition & 1 deletion tune/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Karlson Pfannschmidt"""
__email__ = "kiudee@mail.upb.de"
__version__ = "0.6.0-beta.0"
__version__ = "0.6.0-beta.1"

from tune.io import InitStrings, load_tuning_config, parse_ranges
from tune.local import (
Expand Down

0 comments on commit 979fe8d

Please sign in to comment.