From 1e7775310b8f6d44259cf2e294203cbc75cf59a1 Mon Sep 17 00:00:00 2001 From: David Newswanger Date: Tue, 19 Oct 2021 10:28:12 -0400 Subject: [PATCH] Release 4.4.0b1 (#1031) No-Issue --- galaxy_ng/__init__.py | 2 +- galaxy_ng/app/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 2fd9b702b1..ea208fe59b 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.4.0a2" +__version__ = "4.4.0b1" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 36d13963e7..e706d416db 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.0a2" + version = "4.4.0b1" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index 70ffab2528..2c84022560 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.4.0a2 +current_version = 4.4.0b1 commit = False tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+))?((?P\d+))? diff --git a/setup.py b/setup.py index 72f444fb30..53230053b4 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.0a2" +version = "4.4.0b1" class PrepareStaticCommand(Command):