diff --git a/.travis/VERSION b/.travis/VERSION index 80895903a1..f77856a6f1 100644 --- a/.travis/VERSION +++ b/.travis/VERSION @@ -1 +1 @@ -4.3.0 +4.3.1 diff --git a/CHANGES.rst b/CHANGES.rst index f34627c92a..bf0f6cdbc8 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,15 @@ Changelog .. towncrier release notes start +4.3.1 (2021-06-03) +================== + +- Fix broken migration when upgrading from 4.2 + + +---- + + 4.3.0 (2021-06-01) ==================== diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 58ff269874..6745008221 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.3.0" +__version__ = "4.3.1" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 2cc4cad8ba..c68ca7b391 100644 --- a/galaxy_ng/app/__init__.py +++ b/galaxy_ng/app/__init__.py @@ -8,7 +8,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig): name = "galaxy_ng.app" label = "galaxy" - version = "4.3.0" + version = "4.3.1" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index 1195f5acaa..a2224e687c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.3.0 +current_version = 4.3.1 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 a77b621141..ba4f8434a5 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from setuptools.command.sdist import sdist as _SDistCommand package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng") -version = "4.3.0" +version = "4.3.1" class PrepareStaticCommand(Command):