Skip to content

Commit b3861c9

Browse files
authored
prepare for 2.0.0 (#22)
1 parent a72bdc2 commit b3861c9

File tree

2 files changed

+31
-17
lines changed

2 files changed

+31
-17
lines changed

CHANGELOG.md

Lines changed: 28 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 2.0.0 - Jun 1, 2022
2+
3+
- Update dependencies
4+
- `rxdart` to `0.27.4`.
5+
- `rxdart_ext` to `0.2.1`.
6+
7+
- Rename
8+
- `Logger` to `RxStorageLogger`.
9+
- `LoggerEvent` to `RxStorageLoggerEvent`.
10+
- `EmptyLogger` to `RxStorageEmptyLogger`.
11+
- `DefaultLogger` to `RxStorageDefaultLogger`.
12+
- Update `RxStorageEmptyLogger`: add `@nonvirtual` to `log` method.
13+
- `Encoder` and `Decoder` can return a `Future`
14+
115
## 1.2.0 - Sep 11, 2021
216

317
- Update dependencies
@@ -9,29 +23,29 @@
923

1024
## 1.1.0 - May 9, 2021
1125

12-
- Update `rxdart` to `0.27.0`.
26+
- Update `rxdart` to `0.27.0`.
1327

1428
## 1.0.0 - Apr 30, 2021
1529

16-
- Stable release for null safety.
17-
- Add `RxStorage.executeUpdate`: Read–modify–write style.
18-
- Synchronize writing task by key.
19-
- Internal refactoring, optimize performance.
30+
- Stable release for null safety.
31+
- Add `RxStorage.executeUpdate`: Read–modify–write style.
32+
- Synchronize writing task by key.
33+
- Internal refactoring, optimize performance.
2034

2135
## 1.0.0-nullsafety.0 - Feb 24, 2021
2236

23-
- **Breaking**:
24-
- Opt into nullsafety.
25-
- Set Dart SDK constraints to `>=2.12.0-0 <3.0.0`.
26-
- Big refactoring for `Logger`, `RealRxStorage` implementation.
37+
- **Breaking**:
38+
- Opt into nullsafety.
39+
- Set Dart SDK constraints to `>=2.12.0-0 <3.0.0`.
40+
- Big refactoring for `Logger`, `RealRxStorage` implementation.
2741

2842
## 0.0.2 - Jan 4, 2021
2943

30-
- Refactors `Storage` and `RxStorage`:
31-
- Supports any type via `Encoder` and `Decoder`.
32-
- Generic `Key` and generic `Options`.
33-
- Exports `RealRxStorage` class.
44+
- Refactors `Storage` and `RxStorage`:
45+
- Supports any type via `Encoder` and `Decoder`.
46+
- Generic `Key` and generic `Options`.
47+
- Exports `RealRxStorage` class.
3448

3549
## 0.0.1 - Dec 14, 2020
3650

37-
- Initial version.
51+
- Initial version.

pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: rx_storage
22
description: Reactive storage for Dart/Flutter. RxDart Storage for Dart/Flutter.
3-
version: 1.2.0
3+
version: 2.0.0
44
homepage: https://github.com/Flutter-Dart-Open-Source/rx_storage.git
55
repository: https://github.com/Flutter-Dart-Open-Source/rx_storage.git
66
issue_tracker: https://github.com/Flutter-Dart-Open-Source/rx_storage/issues
@@ -9,12 +9,12 @@ environment:
99
sdk: '>=2.12.0 <3.0.0'
1010

1111
dependencies:
12-
rxdart_ext: ^0.2.0
12+
rxdart_ext: ^0.2.1
1313
disposebag: ^1.5.0
1414
meta: ^1.7.0
1515
stack_trace: ^1.10.0
1616

1717
dev_dependencies:
1818
lints: ^1.0.1
1919
test: ^1.17.12
20-
collection: ^1.15.0
20+
collection: ^1.16.0

0 commit comments

Comments
 (0)