Skip to content

Commit

Permalink
released 0.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Sep 18, 2020
1 parent 9d4d89f commit 6b87ca4
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# 0.28.0
This release includes significant changes to the dcli command line.
The command 'clean' has been renamed to warmup.
There is now a new 'clean' command which now does what the label says. It removes all build artifiacts.
Find: Added static properties for file, directory and link which can be used a short hand for FileSystemEntityType.
exposed the pub cache environment variable.
Added a method clean to DartProjects.
Added method warmup to DartProjects.
Added method to PubCache to set the .pub-cache path to an alternate location.
Improved the Move exception error.
Fixed the compile install option which was using the wrong source path.
Fixes to the docker unit tests.
Added test for integer validator.
Added compile entry point to Script and updated unit tests to use it.
Added a 'run' method to Script so users can easily run a script from the dcli api.
Fixed a bug in the compiler. Even if you agreed to overwrite the exe during the install it would still report an error.

# 0.27.1
Exposed DartProject class as part of the public api
Added color tests.
Expand Down
2 changes: 1 addition & 1 deletion 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 = '0.27.1';
String packageVersion = '0.28.0';
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: dcli
version: 0.27.1
version: 0.28.0
homepage: https://github.com/bsutton/dcli
description: An API and dev environment for writing console (cli) apps/scripts using dart. e.g. allows you to build bash style scripts with dart.
environment:
Expand Down
1 change: 0 additions & 1 deletion test/src/script/commands/project_create_test.dart
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import 'package:dcli/dcli.dart' hide equals;
import 'package:test/test.dart';

Expand Down

0 comments on commit 6b87ca4

Please sign in to comment.