Skip to content

Commit

Permalink
Prepare sidekick_core release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
passsy committed Nov 25, 2022
1 parent e896c09 commit 98a0836
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions sidekick_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.12.0
- New: `version` getter mirroring the `sidekick_core` version in `pubspec.yaml`
- Analyzer now ignores the `build` folder. Previously, the embedded dart sdk was accidentally analyzed #107
- Reduce stdout noise when installing a plugin from pub (`sidekick plugin install`) #109
- Reduce stdout when compiling the cli (not showing `dart pub get` stdout) #109
- Allow cli names to include underscores (sidekick init) #112
- `DepsCommand` now accounts for the `exclude` parameter, not loading dependencies for those packages #118

## 0.11.1
- New: `<FileSystemEntity>.makeExecutable()` extension method
- Update repository URL in pubspec.yaml
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 @@ -42,7 +42,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('0.11.1');
final Version version = Version.parse('0.12.0');

/// 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: Reusable code pieces for sidekick CLIs. Provides a project and useful helper methods when working with files
version: 0.11.1
version: 0.12.0
repository: https://github.com/phntmxyz/sidekick/tree/main/sidekick_core
issue_tracker: https://github.com/phntmxyz/sidekick/labels/sidekick_core

Expand Down

0 comments on commit 98a0836

Please sign in to comment.