Skip to content

Commit

Permalink
prepare for 2.0.0 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
hoc081098 authored Jun 1, 2022
1 parent a72bdc2 commit b3861c9
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 17 deletions.
42 changes: 28 additions & 14 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 2.0.0 - Jun 1, 2022

- Update dependencies
- `rxdart` to `0.27.4`.
- `rxdart_ext` to `0.2.1`.

- Rename
- `Logger` to `RxStorageLogger`.
- `LoggerEvent` to `RxStorageLoggerEvent`.
- `EmptyLogger` to `RxStorageEmptyLogger`.
- `DefaultLogger` to `RxStorageDefaultLogger`.
- Update `RxStorageEmptyLogger`: add `@nonvirtual` to `log` method.
- `Encoder` and `Decoder` can return a `Future`

## 1.2.0 - Sep 11, 2021

- Update dependencies
Expand All @@ -9,29 +23,29 @@

## 1.1.0 - May 9, 2021

- Update `rxdart` to `0.27.0`.
- Update `rxdart` to `0.27.0`.

## 1.0.0 - Apr 30, 2021

- Stable release for null safety.
- Add `RxStorage.executeUpdate`: Read–modify–write style.
- Synchronize writing task by key.
- Internal refactoring, optimize performance.
- Stable release for null safety.
- Add `RxStorage.executeUpdate`: Read–modify–write style.
- Synchronize writing task by key.
- Internal refactoring, optimize performance.

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

- **Breaking**:
- Opt into nullsafety.
- Set Dart SDK constraints to `>=2.12.0-0 <3.0.0`.
- Big refactoring for `Logger`, `RealRxStorage` implementation.
- **Breaking**:
- Opt into nullsafety.
- Set Dart SDK constraints to `>=2.12.0-0 <3.0.0`.
- Big refactoring for `Logger`, `RealRxStorage` implementation.

## 0.0.2 - Jan 4, 2021

- Refactors `Storage` and `RxStorage`:
- Supports any type via `Encoder` and `Decoder`.
- Generic `Key` and generic `Options`.
- Exports `RealRxStorage` class.
- Refactors `Storage` and `RxStorage`:
- Supports any type via `Encoder` and `Decoder`.
- Generic `Key` and generic `Options`.
- Exports `RealRxStorage` class.

## 0.0.1 - Dec 14, 2020

- Initial version.
- Initial version.
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: rx_storage
description: Reactive storage for Dart/Flutter. RxDart Storage for Dart/Flutter.
version: 1.2.0
version: 2.0.0
homepage: https://github.com/Flutter-Dart-Open-Source/rx_storage.git
repository: https://github.com/Flutter-Dart-Open-Source/rx_storage.git
issue_tracker: https://github.com/Flutter-Dart-Open-Source/rx_storage/issues
Expand All @@ -9,12 +9,12 @@ environment:
sdk: '>=2.12.0 <3.0.0'

dependencies:
rxdart_ext: ^0.2.0
rxdart_ext: ^0.2.1
disposebag: ^1.5.0
meta: ^1.7.0
stack_trace: ^1.10.0

dev_dependencies:
lints: ^1.0.1
test: ^1.17.12
collection: ^1.15.0
collection: ^1.16.0

0 comments on commit b3861c9

Please sign in to comment.