diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f3ca7288..d4daf6b1 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -4,6 +4,12 @@ cspell:words pubspec erickzanardo xcframeworks Cupertino codesign codecov rkishan appbundle proto tlsv --> +## 1.6.51 (July 15, 2025) + +- 🪟 Fixes a Windows bug where large build identifiers (the `4` in `1.2.3+4`) + would be misreported due to overflow. You are only affected if you publish + Windows desktop apps and use build identifiers greater than 65,525 (2^16 - 1). + ## 1.6.50 (July 10, 2025) - 🐦 Support for Flutter 3.32.6 diff --git a/packages/shorebird_cli/lib/src/version.dart b/packages/shorebird_cli/lib/src/version.dart index 77e4fcd5..7b0d0d0f 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.6.50'; +const packageVersion = '1.6.51'; diff --git a/packages/shorebird_cli/pubspec.yaml b/packages/shorebird_cli/pubspec.yaml index 66932a37..c945629a 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.6.50 +version: 1.6.51 repository: https://github.com/shorebirdtech/shorebird resolution: workspace