diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index eca8567b..202b4072 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,6 +2,32 @@ This section contains past updates we've sent to current Trusted Testers. +## 0.0.10 + +We've just released Shorebird CLI v0.0.10. + +We discovered a bug in 0.0.9 that caused releases made from 0.0.9 with +a version name including build number (e.g. `1.0.0+1`) to fail to update. + +`shorebird release` would include the build number in the version name, +but the updater client would not include the build number in its request +to the server. + +The fix was to make the updater client always also include the build number +which will make "1.0.0+1" and "1.0.0+2" correctly different versions. + +What else is new: +* `shorebird run` now supports `-d` to specify a device ID. +* Fixed `shorebird run` on linux x64 when `web` was enabled for the project. +* Fixed Windows install script to work even when IE was not installed. +* Fixed Windows install to add the correct path to the PATH variable. + +As always, you can upgrade with `shorebird upgrade`. + +Please let us know if we can help! + +Eric + ## 0.0.9 - Open Beta Welcome to 0.0.9, big changes ahead! diff --git a/packages/shorebird_cli/lib/src/version.dart b/packages/shorebird_cli/lib/src/version.dart index 1f652242..b3c1e7db 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.0.9'; +const packageVersion = '0.0.10'; diff --git a/packages/shorebird_cli/pubspec.yaml b/packages/shorebird_cli/pubspec.yaml index 04709622..972f7219 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.0.9 +version: 0.0.10 repository: https://github.com/shorebirdtech/shorebird publish_to: none