From eef9ef5d887d17007716b0426fca9ecc2574cc64 Mon Sep 17 00:00:00 2001 From: David Newswanger Date: Sun, 12 Sep 2021 17:05:57 -0400 Subject: [PATCH] Release 4.4.0a1 (#959) No-Issue --- galaxy_ng/__init__.py | 2 +- galaxy_ng/app/__init__.py | 2 +- setup.cfg | 6 +----- setup.py | 2 +- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index aeafa2eee4..346e9e9cf0 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.4.0dev" +__version__ = "4.4.0a1" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index f9787a2836..ebf4b843a4 100644 --- a/galaxy_ng/app/__init__.py +++ b/galaxy_ng/app/__init__.py @@ -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() diff --git a/setup.cfg b/setup.cfg index f1324e6339..c2467b1526 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.4.0dev +current_version = 4.4.0a1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+))?((?P\d+))? @@ -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} diff --git a/setup.py b/setup.py index 0341a7cd01..3b60d7f7d7 100644 --- a/setup.py +++ b/setup.py @@ -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):