Skip to content

Commit

Permalink
Released 1.21.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
bsutton committed Oct 17, 2022
1 parent 889e40b commit 97dcc65
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 4 additions & 0 deletions dcli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.21.1
- reverted a change made by the ide.
- Fixed a bug in the Ask RegEx validator which was pushing the response to lower case.

# 1.21.0
- Upgraded to scope 3.0. Fixed a bug in withEnvironment as we need two version, a sync and async version.

Expand Down
5 changes: 1 addition & 4 deletions dcli/lib/src/functions/ask.dart
Original file line number Diff line number Diff line change
Expand Up @@ -262,10 +262,7 @@ class Ask extends core.DCliFunction {
// print a space an move back again.
// required to clear the current character
// move back one space.
stdout
..writeCharCode(_)
..writeCharCode(_space)
..writeCharCode(_);
stdout..writeCharCode(_)..writeCharCode(_space)..writeCharCode(_);
value.removeLast();
}
} else {
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.21.0';
String packageVersion = '1.21.1';

0 comments on commit 97dcc65

Please sign in to comment.