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"}, ]