From 085fc42d0026e2705c11ae2c3f555bf20b4e22ce Mon Sep 17 00:00:00 2001 From: Brian Scholer <1260690+briantist@users.noreply.github.com> Date: Sat, 14 Oct 2023 17:15:35 -0400 Subject: [PATCH] Release/v0.11.2 (#125) * bump version * release v0.11.2 --- CHANGELOG.rst | 8 ++++++++ .../0.11.2}/123-relative-url-scheme.yml | 0 changelogs/changelog.yaml | 11 +++++++++++ pyproject.toml | 2 +- 4 files changed, 20 insertions(+), 1 deletion(-) rename changelogs/{fragments => archive/0.11.2}/123-relative-url-scheme.yml (100%) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 9d55f8f..0d3e6fc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,14 @@ galactory Release Notes .. contents:: Topics +v0.11.2 +======= + +Bugfixes +-------- + +- Using the ``PREFERRED_URL_SCHEME`` configuration option caused failure in Galaxy v3 due to its inapplicability to relative URLs. This now works correctly by not applying the preferred scheme to relative URLs, since they do not need to know the current scheme (https://github.com/briantist/galactory/issues/122, https://github.com/briantist/galactory/pull/123). + v0.11.1 ======= diff --git a/changelogs/fragments/123-relative-url-scheme.yml b/changelogs/archive/0.11.2/123-relative-url-scheme.yml similarity index 100% rename from changelogs/fragments/123-relative-url-scheme.yml rename to changelogs/archive/0.11.2/123-relative-url-scheme.yml diff --git a/changelogs/changelog.yaml b/changelogs/changelog.yaml index 579ee76..aacb265 100644 --- a/changelogs/changelog.yaml +++ b/changelogs/changelog.yaml @@ -135,6 +135,17 @@ releases: fragments: - 114-bugfixes.yml release_date: '2023-10-08' + 0.11.2: + changes: + bugfixes: + - Using the ``PREFERRED_URL_SCHEME`` configuration option caused failure in + Galaxy v3 due to its inapplicability to relative URLs. This now works correctly + by not applying the preferred scheme to relative URLs, since they do not need + to know the current scheme (https://github.com/briantist/galactory/issues/122, + https://github.com/briantist/galactory/pull/123). + fragments: + - 123-relative-url-scheme.yml + release_date: '2023-10-14' 0.2.0: changes: minor_changes: diff --git a/pyproject.toml b/pyproject.toml index 883a090..de0bc26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "galactory" -version = "0.11.1" +version = "0.11.2" authors = [ {name = "Brian Scholer"}, ]