Skip to content

Commit

Permalink
Released 6.1.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Jan 26, 2025
1 parent d6e4717 commit ae12809
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 25 deletions.
8 changes: 4 additions & 4 deletions dcli/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dcli
version: 6.1.1
version: 6.1.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,9 +16,9 @@ dependencies:
crypto: ^3.0.0
csv: ^6.0.0
dart_console: ^4.0.0
dcli_common: ^6.1.1
dcli_core: ^6.1.1
dcli_terminal: ^6.1.1
dcli_common: ^6.1.2
dcli_core: ^6.1.2
dcli_terminal: ^6.1.2
equatable: ^2.0.0
ffi: ^2.0.0
file: ^7.0.0
Expand Down
3 changes: 3 additions & 0 deletions dcli_common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# 6.1.2
- 6.1.1. released failed so here we are again.

# 6.1.1
- Added new method withPrivilegesAsync
- forced native_synchronisation to 0.7.1
Expand Down
2 changes: 1 addition & 1 deletion dcli_common/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 = '6.1.1';
String packageVersion = '6.1.2';
2 changes: 1 addition & 1 deletion dcli_common/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dcli_common
version: 6.1.1
version: 6.1.2
description: Common code used by multiple dcli packages.
repository: https://github.com/onepub-dev/dcli
environment:
Expand Down
4 changes: 2 additions & 2 deletions dcli_core/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dcli_core
version: 6.1.1
version: 6.1.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 All @@ -11,7 +11,7 @@ dependencies:
circular_buffer: ^0.12.0
collection: ^1.15.0
crypto: ^3.0.1
dcli_common: ^6.1.1
dcli_common: ^6.1.2
ffi: ^2.1.0
logging: ^1.0.2
meta: ">=1.11.0 <2.0.0"
Expand Down
6 changes: 3 additions & 3 deletions dcli_input/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: dcli_input
version: 6.1.1
version: 6.1.2
homepage: https://dcli.onepub.dev
description: Provides a collection of user input/output functions for the DCli Dart Console SDK, but is also intended for direct use when you just need to add user input to your console app without the full DCli set of features.\n
repository: https://github.com/onepub-dev/dcli
environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
dcli_core: ^6.1.1
dcli_terminal: ^6.1.1
dcli_core: ^6.1.2
dcli_terminal: ^6.1.2
meta: ">=1.11.0 <2.0.0"
validators2: ^5.0.0
dev_dependencies:
Expand Down
10 changes: 5 additions & 5 deletions dcli_sdk/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: dcli_sdk
version: 6.1.1
version: 6.1.2
homepage: https://dcli.onepub.dev
documentation: https://dcli.onepub.dev
description: Dart console SDK - write console (cli) apps/scripts using dart.
repository: https://github.com/onepub-dev/dcli
environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
dcli: ^6.1.1
dcli_common: ^6.1.1
dcli_core: ^6.1.1
dcli_terminal: ^6.1.1
dcli: ^6.1.2
dcli_common: ^6.1.2
dcli_core: ^6.1.2
dcli_terminal: ^6.1.2
meta: ">=1.11.0 <2.0.0"
path: ^1.8.3
pub_semver: ^2.1.4
Expand Down
2 changes: 1 addition & 1 deletion dcli_terminal/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dcli_terminal
version: 6.1.1
version: 6.1.2
homepage: https://dcli.onepub.dev
description: Provides Terminal/Ansi functions used by DCli the Dart Console SDK but is also intended to be used directly.
repository: https://github.com/onepub-dev/dcli
Expand Down
8 changes: 4 additions & 4 deletions dcli_test/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name: dcli_test
description: Test code used by dcli - not for general use.
version: 6.1.1
version: 6.1.2
repository: https://github.com/onepub-dev/dcli/tree/master/dcli_test

environment:
sdk: '>=3.2.0 <4.0.0'

# Add regular dependencies here.
dependencies:
dcli: ^6.1.1
dcli_common: ^6.1.1
dcli_core: ^6.1.1
dcli: ^6.1.2
dcli_common: ^6.1.2
dcli_core: ^6.1.2
file: ^7.0.0
meta: ">=1.11.0 <2.0.0"
path: ^1.8.3
Expand Down
8 changes: 4 additions & 4 deletions dcli_unit_tester/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: dcli_unit_tester
version: 6.1.1
version: 6.1.2
description: This project allows dcli to unit test functions that behave differently when installed via 'dart pub global activate'. It serves no other useful purpose so do not install!
repository: https://github.com/onepub/dcli
environment:
sdk: '>=3.0.0 <4.0.0'
dependencies:
args: ^2.3.0
dcli: ^6.1.1
dcli_core: ^6.1.1
dcli_terminal: ^6.1.1
dcli: ^6.1.2
dcli_core: ^6.1.2
dcli_terminal: ^6.1.2
path: ^1.8.0
dev_dependencies:
lint_hard: ^5.0.0
Expand Down

0 comments on commit ae12809

Please sign in to comment.