Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
luanpotter committed Apr 6, 2020
1 parent eeddb5d commit 0719ad3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,7 @@
## 2.0.0

- Change removeWhere api

## 1.1.5

- Fix coveralls, bump dependencies
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
@@ -1,7 +1,7 @@
name: ordered_set
description: A simple implementation of an Ordered Set for Dart that allows multiple items with the same priority.
version: 1.1.5
homepage: https://github.com/luanpotter/ordered_set
version: 2.0.0
omepage: https://github.com/luanpotter/ordered_set

environment:
sdk: '>=2.0.0-dev.54.0 <3.0.0'
Expand Down
2 changes: 1 addition & 1 deletion test/ordered_set_test.dart
Expand Up @@ -26,7 +26,7 @@ void main() {
test('remove returns the removed elements', () {
OrderedSet<int> a = OrderedSet();
a.addAll([7, 4, 3, 1, 2, 6, 5]);
final removed = a.removeWhere((e) => e <= 2);
final removed = a.removeWhere((e) => e <= 2);
expect(removed.length, 2);
expect(removed.toList().join(), '12');
});
Expand Down

0 comments on commit 0719ad3

Please sign in to comment.