Skip to content

Commit

Permalink
Release 4.4.0a1 (#959)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
newswangerd authored Sep 12, 2021
1 parent 2d83cec commit eef9ef5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion galaxy_ng/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = "4.4.0dev"
__version__ = "4.4.0a1"

default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig"
2 changes: 1 addition & 1 deletion galaxy_ng/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig):

name = "galaxy_ng.app"
label = "galaxy"
version = "4.4.0dev"
version = "4.4.0a1"

def ready(self):
super().ready()
Expand Down
6 changes: 1 addition & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.4.0dev
current_version = 4.4.0a1
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))?((?P<build>\d+))?
Expand Down Expand Up @@ -31,7 +31,3 @@ replace = version = "{new_version}"
[bumpversion:file:./galaxy_ng/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:.travis/VERSION]
search = {current_version}
replace = {new_version}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from setuptools.command.sdist import sdist as _SDistCommand

package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng")
version = "4.4.0dev"
version = "4.4.0a1"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit eef9ef5

Please sign in to comment.