Skip to content

Commit

Permalink
Release 4.3.3 (#970)
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
newswangerd authored Sep 16, 2021
1 parent f57fce1 commit d02e42f
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.3.2
4.3.3
15 changes: 15 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,21 @@ Changelog

.. towncrier release notes start
4.3.3 (2021-09-16)
==================

Bugfixes
--------

- Implemented filters for state and keywords on imports API.
`AAH-646 <https://issues.redhat.com/browse/AAH-646>`_
- Create 'inbound-namespaces' whenever a namespace is created.
`AAH-739 <https://issues.redhat.com/browse/AAH-739>`_


----


4.3.2 (2021-07-07)
==================

Expand Down
1 change: 0 additions & 1 deletion CHANGES/646.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/739.bugfix

This file was deleted.

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.3.2"
__version__ = "4.3.3"

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 @@ -8,7 +8,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig):

name = "galaxy_ng.app"
label = "galaxy"
version = "4.3.2"
version = "4.3.3"

def ready(self):
super().ready()
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 4.3.2
current_version = 4.3.3
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+))?((?P<build>\d+))?
Expand Down
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.3.2"
version = "4.3.3"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit d02e42f

Please sign in to comment.