Skip to content

Commit

Permalink
Bump version: 0.1.0-alpha → 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed May 21, 2020
1 parent 1cbe7c9 commit 2dbe807
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
7 changes: 3 additions & 4 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,20 +1,19 @@
[bumpversion]
current_version = 0.1.0-alpha
current_version = 0.1.0
commit = True
tag = False
tag_name = {new_version}
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 = beta
values =
values =
alpha
beta

[bumpversion:file:setup.cfg]

[bumpversion:file:boolean_parser/__init__.py]

2 changes: 1 addition & 1 deletion boolean_parser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from boolean_parser.parsers import SQLAParser


__version__ = '0.1.0-alpha'
__version__ = '0.1.0'


def parse(value, base='sqla'):
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = boolean-parser
version = 0.1.0-alpha
version = 0.1.0
author = Brian Cherinka
author_email = [email protected]
description = Package for parsing strings containing conditional boolean logic
Expand Down

0 comments on commit 2dbe807

Please sign in to comment.