Skip to content

Commit

Permalink
chore(shorebird_cli): v0.18.1 (#1497)
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel authored Nov 14, 2023
1 parent d2535f3 commit 678510e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
10 changes: 10 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

This section contains past updates we've sent to customers via Discord.

## 0.18.1 (November 14, 2023)

- 🚀 `shorebird release` outputs release version

📚 Release notes can be found at https://github.com/shorebirdtech/shorebird/releases/tag/v0.18.1

As always, you can upgrade using `shorebird upgrade`

Please let us know if we can help!

## 0.18.0 (November 14, 2023)

- ❌ Remove `shorebird apps create` command
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@ void main() {
workingDirectory: cwd,
);
expect(shorebirdReleaseResult.stderr, isEmpty);
expect(shorebirdReleaseResult.stdout, contains('Published Release!'));
expect(
shorebirdReleaseResult.stdout,
contains('Published Release $releaseVersion!'),
);
expect(shorebirdReleaseResult.exitCode, equals(0));

// Verify that no patch is available.
Expand Down Expand Up @@ -178,7 +181,7 @@ void main() {
workingDirectory: cwd,
);
expect(shorebirdPatchResult.stderr, isEmpty);
expect(shorebirdPatchResult.stdout, contains('Published Patch'));
expect(shorebirdPatchResult.stdout, contains('Published Patch 1!'));
expect(shorebirdPatchResult.exitCode, equals(0));

// Verify that the patch is available.
Expand Down
2 changes: 1 addition & 1 deletion packages/shorebird_cli/lib/src/version.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/shorebird_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: shorebird_cli
description: Command-line tool to interact with Shorebird's services.
version: 0.18.0
version: 0.18.1
repository: https://github.com/shorebirdtech/shorebird

publish_to: none
Expand Down

0 comments on commit 678510e

Please sign in to comment.