Skip to content

Commit

Permalink
Release 4.3.4 (#1193)
Browse files Browse the repository at this point in the history
* setup.cfg: remove '.travis/VERSION' reference

removed in #1129,
it's stopping `make dev/bumpversion-patch` from working

* Release 4.3.4

No-Issue

* update AAH-840 CHANGES text
  • Loading branch information
himdel authored Apr 4, 2022
1 parent d65ab03 commit 833f1b3
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 10 deletions.
13 changes: 13 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,19 @@ Changelog

.. towncrier release notes start
4.3.4 (2022-04-01)
Bugfixes
--------

- Update to pulp_ansible 0.7.4 to backport AAH-840 bugfix, which did not resolve the issue for 4.3.
`AAH-840 <https://issues.redhat.com/browse/AAH-840>`_
- Combine the copy and remove tasks
`AAH-1349 <https://issues.redhat.com/browse/AAH-1349>`_


----


4.3.3 (2021-09-16)
==================

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/840.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.3"
__version__ = "4.3.4"

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.3"
version = "4.3.4"

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.3.3
current_version = 4.3.4
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.3.3"
version = "4.3.4"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit 833f1b3

Please sign in to comment.