Skip to content

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
simc committed Jan 3, 2020
1 parent eff5d88 commit c5e4467
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## 1.3.0

*Use latest version of `hive_generator`*

### Breaking changes
- `TypeAdapters` and `@HiveType()` now require a `typeId`
- `Hive.registerAdapter()` does not need a `typeId` anymore.
Expand All @@ -17,8 +19,6 @@

## 1.2.0

*Use latest version of `hive_generator`*

### Breaking changes
- Removed the `Hive.path` getter
- Removed `Hive.openBoxFromBytes()` (use the `bytes` parameter of `Hive.openBox()` instead)
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ Hive is a lightweight and blazing fast key-value database written in pure Dart.

## Features

- 🚀 Mobile, Desktop, & Browser Support
- ⚡ Great Performance (see [benchmark](#benchmark))
- ❤️ Simple, Powerful, & Intuitive API
- 🔒 Strong Encryption built in
- 🎈 **NO** Native Dependencies
- 🔋 Batteries Included
- 🚀 Cross plarform: mobile, desktop, browser
- ⚡ Great performance (see [benchmark](#benchmark))
- ❤️ Simple, powerful, & intuitive API
- 🔒 Strong encryption built in
- 🎈 **NO** native dependencies
- 🔋 Batteries included


## Getting Started
Expand Down
2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ void main() async {
..age = 22
..friends = ['Linda', 'Marc', 'Anne'];

box.put('dave', person);
await box.put('dave', person);

print(box.get('dave')); // Dave: 22
}
2 changes: 1 addition & 1 deletion example/lib/main.g.dart

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c5e4467

Please sign in to comment.