diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index afa7efe4..d208a160 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,6 +2,18 @@ This section contains past updates we've sent to customers via Discord. +## 0.17.4 (November 10, 2023) + +- 💿 Includes our new custom Dart Virtual Machine "mixed-mode" (not yet enabled) + + - We rewrote how Dart code is executed on iOS in this release. We haven't yet enabled the new faster "mixed-mode" execution so there should be no observable change, but the faster VM is now included and in partial use. Because this was such a large (multi-month!) change, there could be unanticipated changes on iOS devices. If you see anything surprising, please let us know! + +📚 Release notes can be found at https://github.com/shorebirdtech/shorebird/releases/tag/v0.17.4 + +As always, you can upgrade using `shorebird upgrade` + +Please let us know if we can help! + ## 0.17.3 (November 8, 2023) - 🗂️ Use multipart file uploads for release and patch artifacts diff --git a/packages/shorebird_cli/lib/src/version.dart b/packages/shorebird_cli/lib/src/version.dart index 376c9014..868bfb13 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.17.3'; +const packageVersion = '0.17.4'; diff --git a/packages/shorebird_cli/pubspec.yaml b/packages/shorebird_cli/pubspec.yaml index 2133473b..9ff154ac 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.17.3 +version: 0.17.4 repository: https://github.com/shorebirdtech/shorebird publish_to: none