Skip to content

Commit

Permalink
Released 3.3.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Jan 14, 2024
1 parent d96a603 commit ed3ec0c
Show file tree
Hide file tree
Showing 4 changed files with 9 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.3.1
version: 3.3.2
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.3.1
dcli_core: ^3.3.2
equatable: ^2.0.0
ffi: ^2.0.0
file: ^7.0.0
Expand Down
5 changes: 5 additions & 0 deletions dcli_core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 3.3.2
- spelling
- Fixed the move command (last update we did moveDir but forgot move) so that it will fall back to copy/delete on any rename failures.
- upgraded to latest version of pubspec_manager as it has needed bug fixes.

# 3.3.1
- Fixed the move command (last update we did moveDir but forgot move) so that it will fall back to copy/delete on any rename failures.

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 'Name' version
String packageVersion = '3.3.1';
String packageVersion = '3.3.2';
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.3.1
version: 3.3.2
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 ed3ec0c

Please sign in to comment.