Skip to content

Commit

Permalink
Sponsor.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcglasberg committed Oct 29, 2024
1 parent de84b76 commit 50bab4e
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 11.0.0

* Sponsored by [MyText.ai](https://mytext.ai)

[![](./example/SponsoredByMyTextAi.png)](https://mytext.ai)

## 10.2.4

* Optimized `IMap.update()`.
Expand Down Expand Up @@ -88,6 +94,3 @@
## 1.0.0

* Initial version: 2021/01/12



8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[![](./example/SponsoredByMyTextAi.png)](https://mytext.ai)

# Fast Immutable Collections

<p align="center">
<img src="https://raw.githubusercontent.com/marcglasberg/fast_immutable_collections/master/assets/logo.png" alt="Logo" />
</p>
Expand All @@ -7,10 +11,6 @@
<a href="https://codecov.io/gh/marcglasberg/fast_immutable_collections/"><img src="https://codecov.io/gh/marcglasberg/fast_immutable_collections/branch/master/graphs/badge.svg" alt="Codecov.io Coverage" /></a>
</p>

---

# Fast Immutable Collections

> _This package is brought to you by <a href="https://github.com/psygo">Philippe Fanaro</a>, and
myself,
<a href="https://github.com/marcglasberg">Marcelo Glasberg</a>._
Expand Down
Binary file added example/SponsoredByMyTextAi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fast_immutable_collections
description: Immutable lists, sets, maps, and multimaps, which are as fast as their native mutable counterparts. Extension methods and comparators for native Dart collections.
version: 10.2.4
version: 11.0.0
homepage: https://github.com/marcglasberg/fast_immutable_collections
topics:
- collections
Expand All @@ -9,7 +9,7 @@ topics:
- functional

environment:
sdk: '>=3.2.0 <4.0.0'
sdk: '>=3.5.0 <4.0.0'

dependencies:
collection: ^1.17.0
Expand Down
2 changes: 1 addition & 1 deletion test/base/iterable_extension_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void main() {
expect(list2, isNot(isA<List<String>>()));
expect(list2, ["xxx", "xx", "x"]);

List<String> list3 = list1.whereNotNull().toList();
List<String> list3 = list1.nonNulls.toList();
expect(list3, isA<List<String>>());
expect(list3, ["xxx", "xx", "x"]);
});
Expand Down

0 comments on commit 50bab4e

Please sign in to comment.