From 69aa9cf097017416aa8ee2398b3e11939f04d6d0 Mon Sep 17 00:00:00 2001 From: David Newswanger Date: Fri, 16 Apr 2021 15:26:09 -0400 Subject: [PATCH] Release 4.3.0a2 (#732) No-Issue --- .travis/VERSION | 2 +- CHANGES.rst | 140 ++++++++++++++++++++++++++++++++++++++ CHANGES/120.misc | 1 - CHANGES/132.bugfix | 1 - CHANGES/139.misc | 1 - CHANGES/145.feature | 1 - CHANGES/152.bugfix | 1 - CHANGES/16.misc | 1 - CHANGES/166.bugfix | 1 - CHANGES/176.misc | 1 - CHANGES/177.misc | 0 CHANGES/185.feature | 1 - CHANGES/195.bugfix | 1 - CHANGES/203.bugfix | 1 - CHANGES/205.feature | 1 - CHANGES/220.bugfix | 1 - CHANGES/222.bugfix | 5 -- CHANGES/224.feature | 1 - CHANGES/257.misc | 1 - CHANGES/265.bufix | 3 - CHANGES/266.bugfix | 1 - CHANGES/272.feature | 1 - CHANGES/274.feature | 1 - CHANGES/276.feature | 1 - CHANGES/277.feature | 1 - CHANGES/278.feature | 1 - CHANGES/281.feature | 1 - CHANGES/282.bugfix | 1 - CHANGES/291.bugfix | 1 - CHANGES/295.misc | 1 - CHANGES/298.feature | 1 - CHANGES/299.misc | 1 - CHANGES/31.misc | 1 - CHANGES/317.feature | 1 - CHANGES/338.feature | 1 - CHANGES/344.misc | 8 --- CHANGES/387.misc | 1 - CHANGES/393.misc | 1 - CHANGES/409.feature | 1 - CHANGES/425.misc | 1 - CHANGES/432.feature | 1 - CHANGES/433.misc | 1 - CHANGES/44.bugfix | 1 - CHANGES/453.bugfix | 1 - CHANGES/478.misc | 1 - CHANGES/482.bugfix | 1 - CHANGES/483.misc | 1 - CHANGES/486.bugfix | 1 - CHANGES/50.bugfix | 3 - CHANGES/500.feature | 1 - CHANGES/57.feature | 45 ------------ galaxy_ng/__init__.py | 2 +- galaxy_ng/app/__init__.py | 2 +- setup.cfg | 12 ++-- setup.py | 2 +- 55 files changed, 150 insertions(+), 117 deletions(-) delete mode 100644 CHANGES/120.misc delete mode 100644 CHANGES/132.bugfix delete mode 100644 CHANGES/139.misc delete mode 100644 CHANGES/145.feature delete mode 100644 CHANGES/152.bugfix delete mode 100644 CHANGES/16.misc delete mode 100644 CHANGES/166.bugfix delete mode 100644 CHANGES/176.misc delete mode 100644 CHANGES/177.misc delete mode 100644 CHANGES/185.feature delete mode 100644 CHANGES/195.bugfix delete mode 100644 CHANGES/203.bugfix delete mode 100644 CHANGES/205.feature delete mode 100644 CHANGES/220.bugfix delete mode 100644 CHANGES/222.bugfix delete mode 100644 CHANGES/224.feature delete mode 100644 CHANGES/257.misc delete mode 100644 CHANGES/265.bufix delete mode 100644 CHANGES/266.bugfix delete mode 100644 CHANGES/272.feature delete mode 100644 CHANGES/274.feature delete mode 100644 CHANGES/276.feature delete mode 100644 CHANGES/277.feature delete mode 100644 CHANGES/278.feature delete mode 100644 CHANGES/281.feature delete mode 100644 CHANGES/282.bugfix delete mode 100644 CHANGES/291.bugfix delete mode 100644 CHANGES/295.misc delete mode 100644 CHANGES/298.feature delete mode 100644 CHANGES/299.misc delete mode 100644 CHANGES/31.misc delete mode 100644 CHANGES/317.feature delete mode 100644 CHANGES/338.feature delete mode 100644 CHANGES/344.misc delete mode 100644 CHANGES/387.misc delete mode 100644 CHANGES/393.misc delete mode 100644 CHANGES/409.feature delete mode 100644 CHANGES/425.misc delete mode 100644 CHANGES/432.feature delete mode 100644 CHANGES/433.misc delete mode 100644 CHANGES/44.bugfix delete mode 100644 CHANGES/453.bugfix delete mode 100644 CHANGES/478.misc delete mode 100644 CHANGES/482.bugfix delete mode 100644 CHANGES/483.misc delete mode 100644 CHANGES/486.bugfix delete mode 100644 CHANGES/50.bugfix delete mode 100644 CHANGES/500.feature delete mode 100644 CHANGES/57.feature diff --git a/.travis/VERSION b/.travis/VERSION index af39471277..403df8ea0c 100644 --- a/.travis/VERSION +++ b/.travis/VERSION @@ -1 +1 @@ -4.3.0.dev +4.3.0a2 diff --git a/CHANGES.rst b/CHANGES.rst index d71668441c..9ca0501e0b 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,146 @@ Changelog .. towncrier release notes start +4.3.0a2 (2021-04-16) +==================== + +Features +-------- + +- Enable OpenAPI spec at cloud.redhat.com/api/automation-hub/v3/openapi.json + + Update docs and decorators on viewsets and serializers to generate correct + spec. + + Modify pulpcore openapigenerator to include concrete hrefs in addition + to {ansible_collection_href}/ style endpoints. + + Need to provide the existing pulp /pulp/api/v3/docs/ view and + a new view at /api/automation-hub/v3/openapi.json + - new viewset may need drf-spectacular tweaks + + Sub tasks: + - Create a snapshot of the OpenAPI spec in CI. + - setup any useful tooling for validating/verifying the spec + - openapidiff ? + - Enable swaggerui view (/v3/swagger/ ?) + + Potential problems: + + - May want/need to import pulpcore openapi generator utils, which may not be in plugin + api + + Before: + + Pulp uses drf-spectacular + + A "live" generated version of the API is available at + + http://localhost:5001/pulp/api/v3/docs/api.json + http://localhost:5001/pulp/api/v3/docs/api.yaml + + And a "redoc" view at: + http://localhost:5001/pulp/api/v3/docs/ + + Note some issues: + + - Lots of endpoints are in the form "{ansible_collection_import_href}" + - in theory, all endpoints should start with a "/" but even + when evaluated, the above is "ansible/ansible/v3/collections/artifacts" + + - schema objects are inconsistent named + - pulpcore has no prefix + - pulp_ansible has ansible. prefix + - galaxy_ng sometimes? has galaxy. prefix and sometimes Galaxy + `AAH-57 `_ +- Add OpenShift job template to run database migrations + `AAH-145 `_ +- Allow on to customize version for sdist building + `AAH-185 `_ +- Add debug level logging about access_policy permission evaluation. + `AAH-205 `_ +- Add unpaginated collections, collectionversions and metadata endopints for better sync performance. + `AAH-224 `_ +- Add rate_limit to remotes api. + `AAH-272 `_ +- Add container list and detail endpoints for execution environments. + `AAH-274 `_ +- Add the ability to view the changes that have been made to a container repo. + `AAH-276 `_ +- Add api to return images in a container repo. + `AAH-277 `_ +- Set pulp container access policies. + `AAH-278 `_ +- Load initial data for repo, remote and distribution using data migrations + `AAH-281 `_ +- Add GALAXY_FEATURE_FLAGS to enable/disable execution environments + `AAH-298 `_ +- Add the ability to create readmes for container distributions. + `AAH-317 `_ +- Add api for loading a container manifest configuration blob. + `AAH-338 `_ +- Add requires_ansible to the collection api endpoints + `AAH-409 `_ +- Add models for container registry sync config + `AAH-432 `_ +- Allow creating super users. + `AAH-500 `_ + + +Bugfixes +-------- + +- Fix how travis checks for existence of Jira issues + `AAH-44 `_ +- Fixed synclist curation creating 2 * N tasks, where N is number of synclists. + Now synclist curation is executed in batches. Number of batches is configured in project settings. + By default it is set to 200 synclists per task. + `AAH-50 `_ +- Fix NamespaceLink creation and Validation on duplicated name. + `AAH-132 `_ +- API returns 409 in case of existing group with same name. + `AAH-152 `_ +- The namespaces api now performs a partial match on namespace name and namespace company name when using the 'keywords' query parameter. + `AAH-166 `_ +- Fix KeyError lookup in namespace and collection viewset + `AAH-195 `_ +- Fix error in error msg when importing invalid filenames + `AAH-203 `_ +- Fix the galaxy-importer check for max size of docs files + `AAH-220 `_ +- Only show synclist toggles to org admin. + + + ie, non org admin's should get 403 response + when viewing synclist endpoints. + `AAH-222 `_ +- Users should not be able to delete themselves. + + Even if they have 'delete-user' perms. + `AAH-265 `_ +- Prevent users with delete-user perms from deleting admin users + `AAH-266 `_ +- Make token and password obfuscated on the API docs for /sync/config + `AAH-282 `_ +- split proxy_url in 3 fields: username, password, address + `AAH-291 `_ +- Fix groups endpoint viewable only by admin + `AAH-453 `_ +- Expose pulp API in generated openapi spec. + `AAH-482 `_ +- Replace current PULP_REDIS* env variables with PULP_REDIS_URL env variable to accommodate PULP_REDIS_SSL. + `AAH-486 `_ + + +Misc +---- + +- `AAH-16 `_, `AAH-31 `_, `AAH-120 `_, `AAH-139 `_, `AAH-176 `_, `AAH-177 `_, `AAH-257 `_, `AAH-295 `_, `AAH-299 `_, `AAH-344 `_, `AAH-387 `_, `AAH-393 `_, `AAH-425 `_, `AAH-433 `_, `AAH-478 `_, `AAH-483 `_ + + +---- + + 4.2.0 (2020-11-12) ================== diff --git a/CHANGES/120.misc b/CHANGES/120.misc deleted file mode 100644 index d3808d2cef..0000000000 --- a/CHANGES/120.misc +++ /dev/null @@ -1 +0,0 @@ -Adds write_only_fields to remote API to inform clients if a write only field is set or not. diff --git a/CHANGES/132.bugfix b/CHANGES/132.bugfix deleted file mode 100644 index 830ea15aeb..0000000000 --- a/CHANGES/132.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix NamespaceLink creation and Validation on duplicated name. diff --git a/CHANGES/139.misc b/CHANGES/139.misc deleted file mode 100644 index 20423b652a..0000000000 --- a/CHANGES/139.misc +++ /dev/null @@ -1 +0,0 @@ -Inbound repo and distro creation moved to Namespace model manager. diff --git a/CHANGES/145.feature b/CHANGES/145.feature deleted file mode 100644 index fcd17499f4..0000000000 --- a/CHANGES/145.feature +++ /dev/null @@ -1 +0,0 @@ -Add OpenShift job template to run database migrations diff --git a/CHANGES/152.bugfix b/CHANGES/152.bugfix deleted file mode 100644 index eb08c650c6..0000000000 --- a/CHANGES/152.bugfix +++ /dev/null @@ -1 +0,0 @@ -API returns 409 in case of existing group with same name. diff --git a/CHANGES/16.misc b/CHANGES/16.misc deleted file mode 100644 index 1987e9284b..0000000000 --- a/CHANGES/16.misc +++ /dev/null @@ -1 +0,0 @@ -Add more fields to /tasks endpoint diff --git a/CHANGES/166.bugfix b/CHANGES/166.bugfix deleted file mode 100644 index 22986e9d12..0000000000 --- a/CHANGES/166.bugfix +++ /dev/null @@ -1 +0,0 @@ -The namespaces api now performs a partial match on namespace name and namespace company name when using the 'keywords' query parameter. diff --git a/CHANGES/176.misc b/CHANGES/176.misc deleted file mode 100644 index 7dbe8a8073..0000000000 --- a/CHANGES/176.misc +++ /dev/null @@ -1 +0,0 @@ -Update pulp_ansible to 0.5.3 diff --git a/CHANGES/177.misc b/CHANGES/177.misc deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/CHANGES/185.feature b/CHANGES/185.feature deleted file mode 100644 index 4113129482..0000000000 --- a/CHANGES/185.feature +++ /dev/null @@ -1 +0,0 @@ -Allow on to customize version for sdist building diff --git a/CHANGES/195.bugfix b/CHANGES/195.bugfix deleted file mode 100644 index 1442d43b53..0000000000 --- a/CHANGES/195.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix KeyError lookup in namespace and collection viewset diff --git a/CHANGES/203.bugfix b/CHANGES/203.bugfix deleted file mode 100644 index 2fadb5fac2..0000000000 --- a/CHANGES/203.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix error in error msg when importing invalid filenames diff --git a/CHANGES/205.feature b/CHANGES/205.feature deleted file mode 100644 index df54df3f79..0000000000 --- a/CHANGES/205.feature +++ /dev/null @@ -1 +0,0 @@ -Add debug level logging about access_policy permission evaluation. diff --git a/CHANGES/220.bugfix b/CHANGES/220.bugfix deleted file mode 100644 index 72bdf28f9f..0000000000 --- a/CHANGES/220.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix the galaxy-importer check for max size of docs files diff --git a/CHANGES/222.bugfix b/CHANGES/222.bugfix deleted file mode 100644 index b80d4e0761..0000000000 --- a/CHANGES/222.bugfix +++ /dev/null @@ -1,5 +0,0 @@ -Only show synclist toggles to org admin. - - -ie, non org admin's should get 403 response -when viewing synclist endpoints. diff --git a/CHANGES/224.feature b/CHANGES/224.feature deleted file mode 100644 index 816bab0aa6..0000000000 --- a/CHANGES/224.feature +++ /dev/null @@ -1 +0,0 @@ -Add unpaginated collections, collectionversions and metadata endopints for better sync performance. diff --git a/CHANGES/257.misc b/CHANGES/257.misc deleted file mode 100644 index 8a0926d608..0000000000 --- a/CHANGES/257.misc +++ /dev/null @@ -1 +0,0 @@ -Add a new dev environment variable to bypass the installation of requirement lock files. diff --git a/CHANGES/265.bufix b/CHANGES/265.bufix deleted file mode 100644 index 9e5631404d..0000000000 --- a/CHANGES/265.bufix +++ /dev/null @@ -1,3 +0,0 @@ -Users should not be able to delete themselves. - -Even if they have 'delete-user' perms. diff --git a/CHANGES/266.bugfix b/CHANGES/266.bugfix deleted file mode 100644 index 7723ccf9d1..0000000000 --- a/CHANGES/266.bugfix +++ /dev/null @@ -1 +0,0 @@ -Prevent users with delete-user perms from deleting admin users diff --git a/CHANGES/272.feature b/CHANGES/272.feature deleted file mode 100644 index 18473d191e..0000000000 --- a/CHANGES/272.feature +++ /dev/null @@ -1 +0,0 @@ -Add rate_limit to remotes api. diff --git a/CHANGES/274.feature b/CHANGES/274.feature deleted file mode 100644 index 89e5a2e58a..0000000000 --- a/CHANGES/274.feature +++ /dev/null @@ -1 +0,0 @@ -Add container list and detail endpoints for execution environments. diff --git a/CHANGES/276.feature b/CHANGES/276.feature deleted file mode 100644 index 9e4012afdb..0000000000 --- a/CHANGES/276.feature +++ /dev/null @@ -1 +0,0 @@ -Add the ability to view the changes that have been made to a container repo. diff --git a/CHANGES/277.feature b/CHANGES/277.feature deleted file mode 100644 index 24d7424bdf..0000000000 --- a/CHANGES/277.feature +++ /dev/null @@ -1 +0,0 @@ -Add api to return images in a container repo. diff --git a/CHANGES/278.feature b/CHANGES/278.feature deleted file mode 100644 index 9fbf74e4f0..0000000000 --- a/CHANGES/278.feature +++ /dev/null @@ -1 +0,0 @@ -Set pulp container access policies. diff --git a/CHANGES/281.feature b/CHANGES/281.feature deleted file mode 100644 index 1ffa6be8b6..0000000000 --- a/CHANGES/281.feature +++ /dev/null @@ -1 +0,0 @@ -Load initial data for repo, remote and distribution using data migrations diff --git a/CHANGES/282.bugfix b/CHANGES/282.bugfix deleted file mode 100644 index 5936f21167..0000000000 --- a/CHANGES/282.bugfix +++ /dev/null @@ -1 +0,0 @@ -Make token and password obfuscated on the API docs for /sync/config diff --git a/CHANGES/291.bugfix b/CHANGES/291.bugfix deleted file mode 100644 index 195ad3fb3e..0000000000 --- a/CHANGES/291.bugfix +++ /dev/null @@ -1 +0,0 @@ -split proxy_url in 3 fields: username, password, address diff --git a/CHANGES/295.misc b/CHANGES/295.misc deleted file mode 100644 index 3812f2b089..0000000000 --- a/CHANGES/295.misc +++ /dev/null @@ -1 +0,0 @@ -Update galaxy-importer to 0.2.14 diff --git a/CHANGES/298.feature b/CHANGES/298.feature deleted file mode 100644 index 2e48797d67..0000000000 --- a/CHANGES/298.feature +++ /dev/null @@ -1 +0,0 @@ -Add GALAXY_FEATURE_FLAGS to enable/disable execution environments diff --git a/CHANGES/299.misc b/CHANGES/299.misc deleted file mode 100644 index 9c1e2efb81..0000000000 --- a/CHANGES/299.misc +++ /dev/null @@ -1 +0,0 @@ -Update django dependency diff --git a/CHANGES/31.misc b/CHANGES/31.misc deleted file mode 100644 index c95a6afca2..0000000000 --- a/CHANGES/31.misc +++ /dev/null @@ -1 +0,0 @@ -Remove the legacy v3/_ui endpoints since they are no longer needed by the UI. diff --git a/CHANGES/317.feature b/CHANGES/317.feature deleted file mode 100644 index 9854395899..0000000000 --- a/CHANGES/317.feature +++ /dev/null @@ -1 +0,0 @@ -Add the ability to create readmes for container distributions. diff --git a/CHANGES/338.feature b/CHANGES/338.feature deleted file mode 100644 index dc834b9c5f..0000000000 --- a/CHANGES/338.feature +++ /dev/null @@ -1 +0,0 @@ -Add api for loading a container manifest configuration blob. diff --git a/CHANGES/344.misc b/CHANGES/344.misc deleted file mode 100644 index 795711d57d..0000000000 --- a/CHANGES/344.misc +++ /dev/null @@ -1,8 +0,0 @@ -Add bump2version config to setup.cfg - -Use bump2version to increment the 'version' string wherever -it is needed. The canonical source of truth for the version -is 'bump2version.current_version' in setup.cfg. - -To update version, change that and run 'bump2version'. - diff --git a/CHANGES/387.misc b/CHANGES/387.misc deleted file mode 100644 index 60bc969482..0000000000 --- a/CHANGES/387.misc +++ /dev/null @@ -1 +0,0 @@ -Improvements to dev environment make targets and image/volume snapshoting. diff --git a/CHANGES/393.misc b/CHANGES/393.misc deleted file mode 100644 index ba5721c241..0000000000 --- a/CHANGES/393.misc +++ /dev/null @@ -1 +0,0 @@ -Fixing some incompatibilities and renamings introduced by pulpcore 3.10 diff --git a/CHANGES/409.feature b/CHANGES/409.feature deleted file mode 100644 index 80e60cd825..0000000000 --- a/CHANGES/409.feature +++ /dev/null @@ -1 +0,0 @@ -Add requires_ansible to the collection api endpoints diff --git a/CHANGES/425.misc b/CHANGES/425.misc deleted file mode 100644 index e6192bc407..0000000000 --- a/CHANGES/425.misc +++ /dev/null @@ -1 +0,0 @@ -Revert proxy_url field split and adjust for new username, password fields. diff --git a/CHANGES/432.feature b/CHANGES/432.feature deleted file mode 100644 index 8af09f26e8..0000000000 --- a/CHANGES/432.feature +++ /dev/null @@ -1 +0,0 @@ -Add models for container registry sync config diff --git a/CHANGES/433.misc b/CHANGES/433.misc deleted file mode 100644 index 4e9e5b93de..0000000000 --- a/CHANGES/433.misc +++ /dev/null @@ -1 +0,0 @@ -Add last_sync_task and pulp_labels to e-e/repositories/ endpoint. diff --git a/CHANGES/44.bugfix b/CHANGES/44.bugfix deleted file mode 100644 index ce6058757b..0000000000 --- a/CHANGES/44.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix how travis checks for existence of Jira issues diff --git a/CHANGES/453.bugfix b/CHANGES/453.bugfix deleted file mode 100644 index e5deae3243..0000000000 --- a/CHANGES/453.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix groups endpoint viewable only by admin diff --git a/CHANGES/478.misc b/CHANGES/478.misc deleted file mode 100644 index ae22aba3c9..0000000000 --- a/CHANGES/478.misc +++ /dev/null @@ -1 +0,0 @@ -Disable django guardian's anonymous user. diff --git a/CHANGES/482.bugfix b/CHANGES/482.bugfix deleted file mode 100644 index 5dace530e6..0000000000 --- a/CHANGES/482.bugfix +++ /dev/null @@ -1 +0,0 @@ -Expose pulp API in generated openapi spec. diff --git a/CHANGES/483.misc b/CHANGES/483.misc deleted file mode 100644 index dbdc080470..0000000000 --- a/CHANGES/483.misc +++ /dev/null @@ -1 +0,0 @@ -Upgrade pulp_container to 2.5.0 diff --git a/CHANGES/486.bugfix b/CHANGES/486.bugfix deleted file mode 100644 index ac60d30810..0000000000 --- a/CHANGES/486.bugfix +++ /dev/null @@ -1 +0,0 @@ -Replace current PULP_REDIS* env variables with PULP_REDIS_URL env variable to accommodate PULP_REDIS_SSL. \ No newline at end of file diff --git a/CHANGES/50.bugfix b/CHANGES/50.bugfix deleted file mode 100644 index ac680b725b..0000000000 --- a/CHANGES/50.bugfix +++ /dev/null @@ -1,3 +0,0 @@ -Fixed synclist curation creating 2 * N tasks, where N is number of synclists. -Now synclist curation is executed in batches. Number of batches is configured in project settings. -By default it is set to 200 synclists per task. diff --git a/CHANGES/500.feature b/CHANGES/500.feature deleted file mode 100644 index 2ffcd78ba1..0000000000 --- a/CHANGES/500.feature +++ /dev/null @@ -1 +0,0 @@ -Allow creating super users. diff --git a/CHANGES/57.feature b/CHANGES/57.feature deleted file mode 100644 index 1b41107d76..0000000000 --- a/CHANGES/57.feature +++ /dev/null @@ -1,45 +0,0 @@ -Enable OpenAPI spec at cloud.redhat.com/api/automation-hub/v3/openapi.json - -Update docs and decorators on viewsets and serializers to generate correct -spec. - -Modify pulpcore openapigenerator to include concrete hrefs in addition -to {ansible_collection_href}/ style endpoints. - -Need to provide the existing pulp /pulp/api/v3/docs/ view and -a new view at /api/automation-hub/v3/openapi.json -- new viewset may need drf-spectacular tweaks - -Sub tasks: -- Create a snapshot of the OpenAPI spec in CI. - - setup any useful tooling for validating/verifying the spec - - openapidiff ? -- Enable swaggerui view (/v3/swagger/ ?) - -Potential problems: - -- May want/need to import pulpcore openapi generator utils, which may not be in plugin -api - -Before: - -Pulp uses drf-spectacular - -A "live" generated version of the API is available at - -http://localhost:5001/pulp/api/v3/docs/api.json -http://localhost:5001/pulp/api/v3/docs/api.yaml - -And a "redoc" view at: -http://localhost:5001/pulp/api/v3/docs/ - -Note some issues: - -- Lots of endpoints are in the form "{ansible_collection_import_href}" - - in theory, all endpoints should start with a "/" but even - when evaluated, the above is "ansible/ansible/v3/collections/artifacts" - -- schema objects are inconsistent named - - pulpcore has no prefix - - pulp_ansible has ansible. prefix - - galaxy_ng sometimes? has galaxy. prefix and sometimes Galaxy diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 75d8881882..3d2a846ad2 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.3.0.dev" +__version__ = "4.3.0a2" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig" diff --git a/galaxy_ng/app/__init__.py b/galaxy_ng/app/__init__.py index 7883a49cd1..cd828a3b33 100644 --- a/galaxy_ng/app/__init__.py +++ b/galaxy_ng/app/__init__.py @@ -8,7 +8,7 @@ class PulpGalaxyPluginAppConfig(PulpPluginAppConfig): name = "galaxy_ng.app" label = "galaxy" - version = "4.3.0.dev" + version = "4.3.0a2" def ready(self): super().ready() diff --git a/setup.cfg b/setup.cfg index cd8f8d0663..0d813a3705 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,17 +1,17 @@ [bumpversion] -current_version = 4.3.0.dev +current_version = 4.3.0a2 commit = False tag = False -parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+))?((?P\d+))? -serialize = - {major}.{minor}.{patch}.{release}{build} - {major}.{minor}.{patch}.{release} +parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+))?((?P\d+))? +serialize = + {major}.{minor}.{patch}{release}{build} + {major}.{minor}.{patch}{release} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = stable first_value = stable -values = +values = stable dev a diff --git a/setup.py b/setup.py index dd76334c0f..1c650a28c9 100644 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ def run(self): print("Installing with unpinned DEV_SOURCE_PATH requirements", requirements) package_name = os.environ.get("GALAXY_NG_ALTERNATE_NAME", "galaxy-ng") -version = "4.3.0.dev" +version = "4.3.0a2" setup( name=package_name,