Skip to content

Commit

Permalink
v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lesnitsky committed May 18, 2024
1 parent a00e457 commit 75a72aa
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.4.0

- Drop `Pending` from `Async`

## 0.3.3

- Revert hierarchy changes.
Expand Down
2 changes: 1 addition & 1 deletion lib/result.dart
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,6 @@ final class Loading<T> implements Async<T>, LateAsync<T> {
const Loading._([this.progress]);
}

final class Pending<T> implements Late<T>, Async<T>, LateAsync<T> {
final class Pending<T> implements Late<T>, LateAsync<T> {
const Pending._();
}
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: dart_patterns
description: Collection of useful patterns for Dart
version: 0.3.2
version: 0.4.0
repository: https://github.com/lesnitsky/dart_patterns

environment:
Expand Down

0 comments on commit 75a72aa

Please sign in to comment.