Skip to content

Commit

Permalink
Bump version: 1.8.0-dev → 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rbeyer committed Jun 1, 2020
1 parent e9e59bb commit 5ca253c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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 = 1.8.0-dev
current_version = 1.8.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down
2 changes: 1 addition & 1 deletion kalasiris/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

__author__ = """Ross A. Beyer"""
__email__ = "rbeyer@seti.org"
__version__ = "1.8.0-dev"
__version__ = "1.8.0"

from .kalasiris import * # noqa: F401,F403
from .k_funcs import * # noqa: F401,F403
Expand Down
2 changes: 1 addition & 1 deletion kalasiris/kalasiris.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# This file shall have *NO* non-Standard Library dependencies.

# kalasiris library version:
__version__ = "1.8.0-dev"
__version__ = "1.8.0"

# Set a logger:
logger = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,6 @@
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/rbeyer/kalasiris',
version='1.8.0-dev',
version='1.8.0',
zip_safe=False,
)

0 comments on commit 5ca253c

Please sign in to comment.