From af62e37787f2184b49b0d2fc8bb24a27410b15f6 Mon Sep 17 00:00:00 2001 From: Daniel Cachapa Date: Thu, 14 Sep 2023 22:11:05 +0200 Subject: [PATCH] Update to latest `crdt` version --- .idea/libraries/Dart_Packages.xml | 4 ++-- CHANGELOG.md | 4 ++++ pubspec.yaml | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.idea/libraries/Dart_Packages.xml b/.idea/libraries/Dart_Packages.xml index 3b9a974..df1452e 100644 --- a/.idea/libraries/Dart_Packages.xml +++ b/.idea/libraries/Dart_Packages.xml @@ -68,7 +68,7 @@ - @@ -371,6 +371,7 @@ + @@ -412,7 +413,6 @@ - diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b6aa66..e96cf1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.0 + +- Update to latest `crdt` version + ## 2.0.0 This version introduces a major refactor which results in multiple breaking changes in line with `crdt` v5. diff --git a/pubspec.yaml b/pubspec.yaml index f1ba86d..c7937e6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: sql_crdt description: Base package for Conflict-free Replicated Data Types (CRDTs) using SQL databases -version: 2.0.0 +version: 2.1.0 homepage: https://github.com/cachapa/sql_crdt repository: https://github.com/cachapa/sql_crdt issue_tracker: https://github.com/cachapa/sql_crdt/issues @@ -9,7 +9,7 @@ environment: sdk: ^3.0.0 dependencies: - crdt: ^5.0.2 + crdt: ^5.1.1 # path: ../crdt source_span: ^1.10.0 sqlparser: ^0.31.1