diff --git a/ui/v2.5/src/components/Changelog/Changelog.tsx b/ui/v2.5/src/components/Changelog/Changelog.tsx index 66b2339d4..494a7d860 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 V0140 from "./versions/v0140.md"; import { MarkdownPage } from "../Shared/MarkdownPage"; @@ -55,7 +56,7 @@ 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.14.0"; const currentDate = buildDate; const currentPage = V0140; @@ -66,9 +67,14 @@ const Changelog: React.FC = () => { page: currentPage, defaultOpen: true, }, + { + version: "v0.13.1", + date: "2022-03-16", + page: V0131, + }, { version: "v0.13.0", - date: "2021-03-08", + date: "2022-03-08", page: V0130, }, { 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 diff --git a/ui/v2.5/src/components/Changelog/versions/v0140.md b/ui/v2.5/src/components/Changelog/versions/v0140.md index adb5928ed..8d3e1a33d 100644 --- a/ui/v2.5/src/components/Changelog/versions/v0140.md +++ b/ui/v2.5/src/components/Changelog/versions/v0140.md @@ -5,5 +5,4 @@ ### 🐛 Bug fixes * Removed warnings and incorrect error message in json scrapers. ([#2375](https://github.com/stashapp/stash/pull/2375)) * Ensure identify continues using other scrapers if a scrape returns no results. ([#2375](https://github.com/stashapp/stash/pull/2375)) -* Continue trying to identify scene if scraper fails. ([#2375](https://github.com/stashapp/stash/pull/2375)) -* Fix auto-tag not using case-insensitive matching. ([#2378](https://github.com/stashapp/stash/pull/2378)) \ No newline at end of file +* Continue trying to identify scene if scraper fails. ([#2375](https://github.com/stashapp/stash/pull/2375)) \ No newline at end of file