Skip to content

Commit 19db953

Browse files
committed
Fix dependency compatibility with the Flutter SDK
1 parent e095662 commit 19db953

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 5.0.1
2+
- Fix dependency compatibility with the Flutter SDK
3+
14
## 5.0.0
25
This version introduces a major refactor which results in multiple breaking changes. This was done with the intention to make this package the basis for a family of CRDT libraries.
36

pubspec.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: crdt
22
description: Dart implementation of Conflict-free Replicated Data Types (CRDTs).
3-
version: 5.0.0
3+
version: 5.0.1
44
homepage: https://github.com/cachapa/crdt
55
repository: https://github.com/cachapa/crdt
66
issue_tracker: https://github.com/cachapa/crdt/issues
@@ -9,7 +9,8 @@ environment:
99
sdk: '>=3.0.0 <4.0.0'
1010

1111
dependencies:
12-
meta: ^1.10.0
12+
# Prevent ongoing dependency issues since this package is bundled in the Flutter SDK
13+
meta: '>=1.0.0 <2.0.0'
1314
uuid: ^4.0.0
1415

1516
dev_dependencies:

0 commit comments

Comments
 (0)