From bd917fdc641074b1f48b28a8f745837f7776cea1 Mon Sep 17 00:00:00 2001 From: WithoutPants <53250216+WithoutPants@users.noreply.github.com> Date: Wed, 16 Mar 2022 09:21:30 +1100 Subject: [PATCH] Add hotfix version entry --- ui/v2.5/src/components/Changelog/Changelog.tsx | 11 +++++++++-- ui/v2.5/src/components/Changelog/versions/v0131.md | 2 ++ 2 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 ui/v2.5/src/components/Changelog/versions/v0131.md diff --git a/ui/v2.5/src/components/Changelog/Changelog.tsx b/ui/v2.5/src/components/Changelog/Changelog.tsx index ffd212a0c..7d3f25c77 100644 --- a/ui/v2.5/src/components/Changelog/Changelog.tsx +++ b/ui/v2.5/src/components/Changelog/Changelog.tsx @@ -16,6 +16,7 @@ import V0100 from "./versions/v0100.md"; import V0110 from "./versions/v0110.md"; import V0120 from "./versions/v0120.md"; import V0130 from "./versions/v0130.md"; +import V0131 from "./versions/v0131.md"; import { MarkdownPage } from "../Shared/MarkdownPage"; // to avoid use of explicit any @@ -54,9 +55,9 @@ const Changelog: React.FC = () => { // after new release: // add entry to releases, using the current* fields // then update the current fields. - const currentVersion = stashVersion || "v0.13.0"; + const currentVersion = stashVersion || "v0.13.1"; const currentDate = buildDate; - const currentPage = V0130; + const currentPage = V0131; const releases: IStashRelease[] = [ { @@ -65,6 +66,12 @@ const Changelog: React.FC = () => { page: currentPage, defaultOpen: true, }, + { + version: "v0.13.0", + date: "2022-03-08", + page: V0130, + defaultOpen: true, + }, { version: "v0.12.0", date: "2021-12-29", diff --git a/ui/v2.5/src/components/Changelog/versions/v0131.md b/ui/v2.5/src/components/Changelog/versions/v0131.md new file mode 100644 index 000000000..4eeb5c06c --- /dev/null +++ b/ui/v2.5/src/components/Changelog/versions/v0131.md @@ -0,0 +1,2 @@ +### 🐛 Bug fixes +* Fix auto-tag not using case-insensitive matching. ([#2378](https://github.com/stashapp/stash/pull/2378)) \ No newline at end of file