Skip to content

Commit

Permalink
Bump master to 4.11.0dev + CHANGES cleanup
Browse files Browse the repository at this point in the history
No-Issue
  • Loading branch information
rochacbruno committed Sep 19, 2024
1 parent 9a404b5 commit 23926a1
Show file tree
Hide file tree
Showing 17 changed files with 68 additions and 33 deletions.
19 changes: 2 additions & 17 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,8 @@
# to be looked at by PR author and reviewer to keep or remove
# called by .github/workflows/labeler.yml

backport-4.2:
- galaxy_ng/app/**/*

backport-4.4:
- galaxy_ng/app/**/*

backport-4.5:
- galaxy_ng/app/**/*

backport-4.6:
- galaxy_ng/app/**/*

backport-4.7:
- galaxy_ng/app/**/*

backport-4.8:
backport-4.9:
- galaxy_ng/app/**/*

backport-4.9:
backport-4.10:
- galaxy_ng/app/**/*
4 changes: 1 addition & 3 deletions .github/workflows/i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ jobs:
matrix:
branch:
- 'master'
- 'stable-4.6'
- 'stable-4.7'
- 'stable-4.8'
- 'stable-4.9'
- 'stable-4.10'

steps:
- uses: actions/checkout@v4
Expand Down
22 changes: 22 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## 4.10.0 (2024-09-19) {: #4.10.0 }

#### Bugfixes

- Support SVG avatar image on namespaces
[#2836](https://github.com/ansible/galaxy_ng/issues/2836)
- Fixed issue where group members were also showing up as users in the Namespace owners list.
[#3121](https://github.com/ansible/galaxy_ng/issues/3121)
- Parameterize ansible-test importer resource requirements
[#3190](https://github.com/ansible/galaxy_ng/issues/3190)

#### Improved Documentation

- echo "add skeleton for galaxy_collection docs"
[#2420](https://github.com/ansible/galaxy_ng/issues/2420)

#### Misc

- [#2822](https://github.com/ansible/galaxy_ng/issues/2822), [#3036](https://github.com/ansible/galaxy_ng/issues/3036), [#3064](https://github.com/ansible/galaxy_ng/issues/3064), [#3358](https://github.com/ansible/galaxy_ng/issues/3358), [#18825](https://github.com/ansible/galaxy_ng/issues/18825)

---

=========
Changelog
=========
Expand Down
39 changes: 39 additions & 0 deletions CHANGES/.TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{# TOWNCRIER TEMPLATE #}
{% for section, _ in sections.items() %}
{%- set section_slug = "-" + section|replace(" ", "-")|replace("_", "-")|lower %}
{%- if section %}

### {{section}} {: #{{versiondata.version}}{{section_slug}} }
{% else %}
{%- set section_slug = "" %}
{% endif %}
{% if sections[section] %}
{% for category, val in definitions.items() if category in sections[section]%}

#### {{ definitions[category]['name'] }} {: #{{versiondata.version}}{{section_slug}}-{{category}} }

{% if definitions[category]['showcontent'] %}
{% for text, values in sections[section][category].items() %}
- {{ text }}
{% if values %}
{{ values|join(',\n ') }}
{% endif %}
{% endfor %}
{% else %}
- {{ sections[section][category]['']|join(', ') }}
{% endif %}
{% if sections[section][category]|length == 0 %}

No significant changes.
{% else %}
{% endif %}
{% endfor %}
{% else %}

No significant changes.
{% endif %}
{% endfor %}

---


1 change: 0 additions & 1 deletion CHANGES/18825.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2420.doc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/2822.misc

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3036.misc

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3064.misc

This file was deleted.

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

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion CHANGES/3358.misc

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.10.0dev"
__version__ = "4.11.0dev"

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

name = "galaxy_ng.app"
label = "galaxy"
version = "4.10.0dev"
version = "4.11.0dev"
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.10.0dev
current_version = 4.11.0dev
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.10.0dev"
version = "4.11.0dev"


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit 23926a1

Please sign in to comment.