Skip to content

Commit

Permalink
Released 3.2.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Dec 16, 2023
1 parent 3aea660 commit 2fe8d2a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dcli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dcli
version: 3.2.2
version: 3.2.3
homepage: https://dcli.onepub.dev
documentation: https://dcli.onepub.dev
description: Dart console SDK - write console (cli) apps/scripts using dart.
Expand All @@ -16,7 +16,7 @@ dependencies:
crypto: ^3.0.0
csv: ^5.0.1
dart_console2: ^3.0.0
dcli_core: ^3.2.2
dcli_core: ^3.2.3
equatable: ^2.0.0
ffi: ^2.0.0
file: ^6.0.0
Expand Down
6 changes: 6 additions & 0 deletions dcli_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 3.2.3
- added verbose logging to process helper.
- unit tests for process_helper_test
- Fixed for process helper when the process name includes a colon.
- exported the Flag class as it is used by a public method in the Settings class.

# 3.2.2
- Fixed a bug in the pack command caused by DartProject.self incorrectly returning a pub-cache path when dcli is run from a global activation. Exposed the Resources class so users can pack files programatially.

Expand Down
2 changes: 1 addition & 1 deletion dcli_core/lib/src/version/version.g.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/// GENERATED BY pub_release do not modify.
/// Instance of 'LineSection' version
String packageVersion = '3.2.2';
String packageVersion = '3.2.3';
2 changes: 1 addition & 1 deletion dcli_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dcli_core
version: 3.2.2
version: 3.2.3
homepage: https://dcli.onepub.dev
documentation: https://dcli.onepub.dev
description: The core asyncronous functions used by dcli. DCli uses waitFor to eliminate async code in the DCli libraries which precludes DCli's usage in non-cli apps (e.g. you can't use it in flutter). The aim of dcli_core is to expose a significant set of the core dcli functions as async version so that dcli_core can be used in any project. DCli will then rely on dcli_core for core parts of its implemenation to avoid duplicating code between the two packages.
Expand Down

0 comments on commit 2fe8d2a

Please sign in to comment.