Skip to content

Commit

Permalink
Released 1.34.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Aug 28, 2022
1 parent e4dfe4f commit 069a961
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
16 changes: 16 additions & 0 deletions dcli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# 1.34.0
- Added start() method to DartScript.
- renamed dclizone to capture and remove the 'experiemental' comment.
- Added additional error test for the find function - errno 5 on linux with can occur when running in a vm or with fuse.
- improved the project creation from template code. We now more tightly target package name updates.
- Added support for excluding resources when packing.
- Improved the full sample template.

## Unit test improvements
- Added code to the test_file_system to activate dcli into the file system. reduced supurfluous unit test output.
- Added unit_test scope to work with the dcliExit code so it knows when we are in a unit test.
- fixed unit test where they named the temp .pub-cache directory inconsistenty.
- Wrapped parts of unit tests in capture to reduce extraneous output.
- replaced calls to exit with dcliExit to stop calls to exit() shutting down the unit test framework.
- change the test tag 'sudo' to 'priviliged'

# 1.33.2
- replaced the full project template with a complete working example.
- change the labels using doctor to all lower case.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ class A07aa86cf4c4246ad598cd362ee228bc4 extends PackedResource {

/// <package>/resources relative path to the original resource.
@override
String get originalPath => 'template/project/full/lib/src/exceptions/app_exception.dart';
String get originalPath =>
'template/project/full/lib/src/exceptions/app_exception.dart';

@override
String get content => '''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ class A26650b6f9160d7c2bc268042340fb6cc extends PackedResource {

/// <package>/resources relative path to the original resource.
@override
String get originalPath => 'template/project/full/lib/src/commands/install.dart';
String get originalPath =>
'template/project/full/lib/src/commands/install.dart';

@override
String get content => '''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ class A3fdab27388188732f2327c4661480284 extends PackedResource {

/// <package>/resources relative path to the original resource.
@override
String get originalPath => 'template/project/full/lib/src/settings/app_settings.dart';
String get originalPath =>
'template/project/full/lib/src/settings/app_settings.dart';

@override
String get content => '''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ class A7a274a7e2807d7c7a7397f68e234c2fe extends PackedResource {

/// <package>/resources relative path to the original resource.
@override
String get originalPath => 'template/project/full/lib/src/commands/config.dart';
String get originalPath =>
'template/project/full/lib/src/commands/config.dart';

@override
String get content => '''
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ class Acd63c1fd5280c24b38cf507ab99ff676 extends PackedResource {

/// <package>/resources relative path to the original resource.
@override
String get originalPath => 'template/project/full/lib/src/args/global_args.dart';
String get originalPath =>
'template/project/full/lib/src/args/global_args.dart';

@override
String get content => '''
Expand Down
2 changes: 1 addition & 1 deletion dcli/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.
/// dcli version
String packageVersion = '1.33.2';
String packageVersion = '1.34.0';

0 comments on commit 069a961

Please sign in to comment.