Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Publish globe-cli update #122

Merged
merged 2 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 2024-12-11

### Changes

---

Packages with breaking changes:

- There are no breaking changes in this release.

Packages with other changes:

- [`globe_cli` - `v0.0.14`](#globe_cli---v0014)

---

#### `globe_cli` - `v0.0.14`

- **FIX**: Use actual package name ([#121](https://github.com/invertase/globe/issues/121)). ([5f2b5a2a](https://github.com/invertase/globe/commit/5f2b5a2ad1ba03798a27bd271001749627b6499c))
- **FEAT**: Multi project linking via CLI ([#117](https://github.com/invertase/globe/issues/117)). ([42a8799b](https://github.com/invertase/globe/commit/42a8799be0fc70ef9d98229d57fc5d80c67c2a2a))


## 2024-10-22

### Changes
Expand Down
5 changes: 5 additions & 0 deletions packages/globe_cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.0.14

- **FIX**: Use actual package name ([#121](https://github.com/invertase/globe/issues/121)). ([5f2b5a2a](https://github.com/invertase/globe/commit/5f2b5a2ad1ba03798a27bd271001749627b6499c))
- **FEAT**: Multi project linking via CLI ([#117](https://github.com/invertase/globe/issues/117)). ([42a8799b](https://github.com/invertase/globe/commit/42a8799be0fc70ef9d98229d57fc5d80c67c2a2a))

## 0.0.13

- **FEAT**: Add `--project` and `--org` options on commands that depend on "scope". ([#100](https://github.com/invertase/globe/issues/100)). ([a11ec775](https://github.com/invertase/globe/commit/a11ec775152c20e90b5979245baccdeb97dd9dc6))
Expand Down
2 changes: 1 addition & 1 deletion packages/globe_cli/lib/src/command_runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class GlobeCliCommandRunner extends CompletionCommandRunner<int> {
GlobeHttpServer? httpServer,
}) : _logger = logger ?? Logger(),
_pubUpdater = pubUpdater ?? PubUpdater(),
super(package_info.name, package_info.description) {
super(package_info.executable, package_info.description) {
argParser
..addFlag(
'version',
Expand Down
2 changes: 1 addition & 1 deletion packages/globe_cli/lib/src/commands/update.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class UpdateCommand extends BaseGlobeCommand {
@override
FutureOr<int>? run() async {
final isUpToDate = await updater.isUpToDate(
packageName: package_info.packageName,
packageName: package_info.name,
currentVersion: package_info.version,
);

Expand Down
5 changes: 2 additions & 3 deletions packages/globe_cli/lib/src/package_info.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// GENERATED CODE. DO NOT EDIT BY HAND.

const name = 'globe';
const version = '0.0.13';
const name = 'globe_cli';
const version = '0.0.14';
const description =
'The global deployment platform for Dart & Flutter applications.';
const executable = 'globe';
const packageName = 'globe_cli';
2 changes: 1 addition & 1 deletion packages/globe_cli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: globe_cli
description: The global deployment platform for Dart & Flutter applications.
version: 0.0.13
version: 0.0.14
repository: https://github.com/invertase/globe

environment:
Expand Down
Loading