From 970c71eb8af7bf26ea034284347686f8b9f87aa6 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Thu, 9 May 2024 13:06:33 -0700 Subject: [PATCH] chore: roll version to 1.0.6 and add release notes (#2057) --- RELEASE_NOTES.md | 13 +++++++++++++ packages/shorebird_cli/lib/src/version.dart | 2 +- packages/shorebird_cli/pubspec.yaml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 5295bfcf..0a43f569 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,6 +2,19 @@ This section contains past updates we've sent to customers via Discord. +## 1.0.6 (May 9, 2024) + +- ♊ `shorebird release` and `shorebird patch` now accept `--platforms` to + specify which platforms to release or patch. This allows you to release or + patch multiple platforms in a single command. For example, `shorebird release + --platforms android,ios` will release to both Android and iOS platforms. +- 🏜️ `shorebird release` now supports `--dry-run` like `shorebird patch`. +- 🪲 `shorebird` commands now save a file with debug info which can be manually + / optionally sent to our team for help debugging any issue you encounter. + +Multiple platform support required an extensive re-write of the release and +patch commands. If you encounter any issues, please let us know! + ## 1.0.5 (May 6, 2024) - 🔗 Improve iOS patch speed when adding/removing classes diff --git a/packages/shorebird_cli/lib/src/version.dart b/packages/shorebird_cli/lib/src/version.dart index ec1c0293..7d79bd1e 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 = '1.0.5'; +const packageVersion = '1.0.6'; diff --git a/packages/shorebird_cli/pubspec.yaml b/packages/shorebird_cli/pubspec.yaml index 52898e7d..c69177d4 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: 1.0.5 +version: 1.0.6 repository: https://github.com/shorebirdtech/shorebird publish_to: none