From 6b8a094f491749c349ee61c145c1d5a93d10965c Mon Sep 17 00:00:00 2001 From: David Newswanger Date: Thu, 24 Sep 2020 11:50:08 -0400 Subject: [PATCH] Release 4.2.0b3 (#487) No-Issue --- CHANGES.rst | 24 ++++++++++++++++++++++++ CHANGES/464.feature | 1 - CHANGES/474.misc | 1 - CHANGES/476.feature | 4 ---- galaxy_ng/__init__.py | 2 +- 5 files changed, 25 insertions(+), 7 deletions(-) delete mode 100644 CHANGES/464.feature delete mode 100644 CHANGES/474.misc delete mode 100644 CHANGES/476.feature diff --git a/CHANGES.rst b/CHANGES.rst index 24c6d2c189..eb1ac67326 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -13,6 +13,30 @@ Changelog .. towncrier release notes start +4.2.0b3 (2020-09-24) +==================== + +Features +-------- + +- Allow a user to specify the protocol she wants to use to talk to the pulp backend. (ie. http vs. https) + `#464 `_ +- Upgrade to pulpcore 3.7.0 and allow for 3.8.0 + + Based on the API stability guidance at + https://docs.pulpproject.org/pulpcore/plugins/plugin-writer/concepts/index.html#plugin-api-stability-and-deprecation-policy + `#476 `_ + + +Misc +---- + +- `#474 `_ + + +---- + + 4.2.0b2 (2020-09-16) ==================== diff --git a/CHANGES/464.feature b/CHANGES/464.feature deleted file mode 100644 index b2db5f9336..0000000000 --- a/CHANGES/464.feature +++ /dev/null @@ -1 +0,0 @@ -Allow a user to specify the protocol she wants to use to talk to the pulp backend. (ie. http vs. https) diff --git a/CHANGES/474.misc b/CHANGES/474.misc deleted file mode 100644 index d9b9abb009..0000000000 --- a/CHANGES/474.misc +++ /dev/null @@ -1 +0,0 @@ -Set `ALLOWED_CONTENT_CHECKSUMS = ["sha224", "sha256", "sha384", "sha512"]` in settings.py to support FIPS compliance. diff --git a/CHANGES/476.feature b/CHANGES/476.feature deleted file mode 100644 index d7504e93c9..0000000000 --- a/CHANGES/476.feature +++ /dev/null @@ -1,4 +0,0 @@ -Upgrade to pulpcore 3.7.0 and allow for 3.8.0 - -Based on the API stability guidance at -https://docs.pulpproject.org/pulpcore/plugins/plugin-writer/concepts/index.html#plugin-api-stability-and-deprecation-policy diff --git a/galaxy_ng/__init__.py b/galaxy_ng/__init__.py index 3098aea722..ac811834cb 100644 --- a/galaxy_ng/__init__.py +++ b/galaxy_ng/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.2.0b2" +__version__ = "4.2.0b3" default_app_config = "galaxy_ng.app.PulpGalaxyPluginAppConfig"