Skip to content

Commit

Permalink
Released 1.33.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Aug 26, 2022
1 parent 704f967 commit 1f20217
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 5 deletions.
8 changes: 8 additions & 0 deletions dcli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 1.33.2
- replaced the full project template with a complete working example.
- change the labels using doctor to all lower case.
- corrected the chmod doc example for execute permission.
- For the install found additional cirumstances when we must run as priviledged on linux so remove the check that we are running on windows to require priviledged operation.
- If the install dir doesn't exist we may need to be privilged to create it so we now run withPrivileges.
- upgrraded win32 version to 2.7.0

# 1.33.0
- BREAKING: the Exectuable class has had a name change from pathToscript to scriptPath. This is
because we are using the actual Executable class from pubspec2 rather than wrapping it.
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 A591893b0b02f8ff52bbf042b810b7567 extends PackedResource {

/// <package>/resources relative path to the original resource.
@override
String get originalPath => 'template/project/full/lib/src/mailhog_settings.dart';
String get originalPath =>
'template/project/full/lib/src/mailhog_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 A8891d57fd45764c01e81806443c53e15 extends PackedResource {

/// <package>/resources relative path to the original resource.
@override
String get originalPath => 'template/project/full/lib/src/mailhog_exception.dart';
String get originalPath =>
'template/project/full/lib/src/mailhog_exception.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.1';
String packageVersion = '1.33.2';

0 comments on commit 1f20217

Please sign in to comment.