Skip to content

Commit

Permalink
Prepare release sidekick_core-v3.0.0-preview.1
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Jul 16, 2024
1 parent 0b123eb commit f168466
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions sidekick_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [3.0.0-preview.1](https://github.com/phntmxyz/sidekick/compare/sidekick_core-v2.1.2..sidekick_core-v3.0.0-preview.1) (2024-7-16)

Full diff: <https://github.com/phntmxyz/sidekick/compare/sidekick_core-v2.1.2...main>

- Breaking: `dart()` and `flutter()` are now async. Don't forget to add `await` everywhere! [#256](https://github.com/phntmxyz/sidekick/pull/256)
- Breaking: Migrate to dcli:^4.0.4 [#255](https://github.com/phntmxyz/sidekick/pull/255) <https://github.com/phntmxyz/sidekick/commit/8969b3127281844e5ff5ed5e63f8ba77da7d808e>
- Raise minimum Dart version to 3.3.0
- Breaking: Replaced `addFlutterSdkInitializer` with `addSdkInitializer`. It now gets way more information via `SdkInitializerContext`. This method may now be called way more often, always before every `flutter`, `dart` execution. [#256](https://github.com/phntmxyz/sidekick/pull/256)
- Pub workspaces are not detected as packages anymore <https://github.com/phntmxyz/sidekick/commit/c6e8f97cf5faccd6f2ff59dcd2ea312dddfdfc09>

## [2.1.2](https://github.com/phntmxyz/sidekick/compare/sidekick_core-v2.1.1..sidekick_core-v2.1.2) (2024-4-5)

- Max Dart SDK 3.2.X [#254](https://github.com/phntmxyz/sidekick/pull/254)
Expand Down
2 changes: 1 addition & 1 deletion sidekick_core/lib/sidekick_core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export 'package:sidekick_core/src/template/sidekick_package.template.dart';
/// This is used by the update command to determine if your sidekick cli
/// requires an update
// DO NOT MANUALLY EDIT THIS VERSION, instead run `sk bump-version sidekick_core`
final Version version = Version.parse('2.1.2');
final Version version = Version.parse('3.0.0-preview.1');

/// Initializes sidekick, call this at the very start of your CLI program
///
Expand Down
2 changes: 1 addition & 1 deletion sidekick_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: sidekick_core
description: Shared sidekick commands, plugin engine, migrations, templates and utilities for sidekick CLIs
version: 2.1.2
version: 3.0.0-preview.1
repository: https://github.com/phntmxyz/sidekick/tree/main/sidekick_core
issue_tracker: https://github.com/phntmxyz/sidekick/labels/sidekick_core
topics:
Expand Down

0 comments on commit f168466

Please sign in to comment.