Skip to content

Commit

Permalink
Bump version: 2.3.0dev → 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
havok2063 committed Dec 3, 2018
1 parent 11760af commit d9a56eb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .bumpversion.cfg
@@ -1,16 +1,16 @@
[bumpversion]
current_version = 2.3.0dev
current_version = 2.3.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 = alpha
values =
values =
dev
alpha

Expand Down
2 changes: 1 addition & 1 deletion python/marvin/__init__.py
Expand Up @@ -19,7 +19,7 @@
from astropy.wcs import FITSFixedWarning

# Set the Marvin version
__version__ = '2.3.0dev'
__version__ = '2.3.0'

# Does this so that the implicit module definitions in extern can happen.
# time - 483 ms
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -75,7 +75,7 @@ def remove_args(parser):

NAME = 'sdss-marvin'
# do not use x.x.x-dev. things complain. instead use x.x.xdev
VERSION = '2.3.0dev'
VERSION = '2.3.0'
RELEASE = 'dev' not in VERSION


Expand Down

0 comments on commit d9a56eb

Please sign in to comment.