Skip to content

Commit

Permalink
Release 4.9.2 (#2124)
Browse files Browse the repository at this point in the history
* bump to 4.9.2
* towncrier build
No-Issue
  • Loading branch information
jerabekjiri authored May 13, 2024
1 parent 378f3de commit 1322bf8
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 6 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.9.2 (2024-04-18)
==================

Bugfixes
--------

- Support SVG avatar image on namespaces
`AAH-2836 <https://issues.redhat.com/browse/AAH-2836>`_
- Fixed issue where group members were also showing up as users in the Namespace owners list.
`AAH-3121 <https://issues.redhat.com/browse/AAH-3121>`_


----
4.9.1 (2024-01-30)
==================

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3121.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
Expand Up @@ -3,6 +3,6 @@

sys.modules.setdefault("automated_logging", automated_logging)

__version__ = "4.9.1"
__version__ = "4.9.2"

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

name = "galaxy_ng.app"
label = "galaxy"
version = "4.9.1"
version = "4.9.2"
python_package_name = "galaxy-ng"

def ready(self):
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.9.1
current_version = 4.9.2
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 @@ -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.9.1"
version = "4.9.2"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit 1322bf8

Please sign in to comment.