Skip to content

Commit

Permalink
Bump master to 4.10.0dev (#1981)
Browse files Browse the repository at this point in the history
* bump master to 4.10.0dev
No-Issue
  • Loading branch information
jerabekjiri authored Nov 21, 2023
1 parent 87de28d commit f168319
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ backport-4.7:

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

backport-4.9:
- galaxy_ng/app/**/*
1 change: 1 addition & 0 deletions .github/workflows/i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- 'stable-4.6'
- 'stable-4.7'
- 'stable-4.8'
- 'stable-4.9'

steps:
- uses: actions/checkout@v4
Expand Down
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.0dev"
__version__ = "4.10.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 @@ -6,7 +6,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig):

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


class PrepareStaticCommand(Command):
Expand Down

0 comments on commit f168319

Please sign in to comment.