diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 924971ff..7c8ede5f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,6 +2,21 @@ This section contains past updates we've sent to customers via Discord. +## 0.12.0 (August 4, 2023) + +We've just released Shorebird v0.12.0 🎉 + +- 📜 `shorebird patch` supports patching releases that used older Flutter versions +- ✅ `shorebird.yaml` exposes `auto_update` which can be used to disable automatic update checks +- 🗂️ `shorebird patch ios-alpha` warns users of asset changes +- 📦 `shorebird release android` supports `--split-per-abi` flag + +📚 Release notes can be found at https://github.com/shorebirdtech/shorebird/releases/tag/v0.12.0 + +As always, you can upgrade using `shorebird upgrade` + +Please let us know if we can help! + ## 0.11.2 (August 1, 2023) We've just released Shorebird v0.11.2 🎉 diff --git a/packages/shorebird_cli/lib/src/version.dart b/packages/shorebird_cli/lib/src/version.dart index ec197862..612840a4 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.11.2'; +const packageVersion = '0.12.0'; diff --git a/packages/shorebird_cli/pubspec.yaml b/packages/shorebird_cli/pubspec.yaml index 71825395..561b0800 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.11.2 +version: 0.12.0 repository: https://github.com/shorebirdtech/shorebird publish_to: none