diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 776cca53..bd4b4f0b 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,6 +2,15 @@ This section contains past updates we've sent to customers via Discord. +## 0.26.5 (March 13, 2024) + +🩹 Fix issue where releases created with `--flutter-version` flag were reporting + incorrect Flutter version, causing `shorebird patch` to later fail. If you've + created a release using `--flutter-version`, you may not be able to patch. + To resolve this, create a new release after upgrading to this version. + +📚 Release notes can be found at https://github.com/shorebirdtech/shorebird/releases/tag/v0.26.5 + ## 0.26.4 (March 11, 2024) 🪵 Clearer error messages for cases where shorebird is not properly set up in a project. diff --git a/packages/shorebird_cli/lib/src/version.dart b/packages/shorebird_cli/lib/src/version.dart index 65e7b0bd..0a2e6185 100644 --- a/packages/shorebird_cli/lib/src/version.dart +++ b/packages/shorebird_cli/lib/src/version.dart @@ -1,2 +1,2 @@ // Generated code. Do not modify. -const packageVersion = '0.26.4'; +const packageVersion = '0.26.5'; diff --git a/packages/shorebird_cli/pubspec.yaml b/packages/shorebird_cli/pubspec.yaml index 4723e572..0c28a99c 100644 --- a/packages/shorebird_cli/pubspec.yaml +++ b/packages/shorebird_cli/pubspec.yaml @@ -1,6 +1,6 @@ name: shorebird_cli description: Command-line tool to interact with Shorebird's services. -version: 0.26.4 +version: 0.26.5 repository: https://github.com/shorebirdtech/shorebird publish_to: none