Skip to content

Commit

Permalink
added missing collection dependency
Browse files Browse the repository at this point in the history
fixed test, updated homepage url, added SDK constraint

Review URL: https://codereview.chromium.org//861313003
  • Loading branch information
kevmoo committed Jan 22, 2015
1 parent 704cf75 commit 523190f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 1.0.4

* Added overlooked `collection` dependency.

## 1.0.3

* Fix a bug where `Glob.list()` and `Glob.listSync()` would incorrectly throw
Expand Down
5 changes: 3 additions & 2 deletions pubspec.yaml
@@ -1,9 +1,10 @@
name: glob
version: 1.0.3
version: 1.0.4
author: "Dart Team <misc@dartlang.org>"
homepage: http://github.com/dart-lang/glob
homepage: https://github.com/dart-lang/glob
description: Bash-style filename globbing.
dependencies:
collection: ">=1.1.0 <2.0.0"
path: ">=1.0.0 <2.0.0"
string_scanner: ">=0.1.0 <0.2.0"
dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions test/parse_test.dart
Expand Up @@ -25,8 +25,8 @@ void main() {
expect("fo2", contains(bang));

var caret = new Glob("fo[^a-z]");
expect("foo", isNot(contains(bang)));
expect("fo2", contains(bang));
expect("foo", isNot(contains(caret)));
expect("fo2", contains(caret));
});

test("supports backslash-escaped characters", () {
Expand Down

0 comments on commit 523190f

Please sign in to comment.