Skip to content

Commit

Permalink
Bump hive_flutter to v2.0.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
themisir committed Oct 15, 2022
1 parent 3668aca commit e2a5dc3
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
4 changes: 4 additions & 0 deletions hive_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.0-dev

- Threaded AesCipher support

## 1.1.0

- Exports `Color` and `TimeOfDay` adapters - [#698](https://github.com/hivedb/hive/pull/698)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'dart:async';
import 'dart:convert';
import 'dart:typed_data';

import 'package:cryptography/cryptography.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import 'dart:async';
import 'dart:convert';
import 'dart:typed_data';

import 'package:cryptography/cryptography.dart';
Expand Down
5 changes: 2 additions & 3 deletions hive_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: hive_flutter
description: Extension for Hive. Makes it easier to use Hive in Flutter apps.
version: 1.1.0
version: 2.0.0-dev
homepage: https://github.com/hivedb/hive/tree/master/hive_flutter
documentation: https://docs.hivedb.dev/

Expand All @@ -12,7 +12,7 @@ dependencies:
sdk: flutter

cryptography: ^2.0.5
hive: ^2.2.1
hive: ^3.0.0-dev
path_provider: ^2.0.10
path: ^1.8.1

Expand All @@ -21,4 +21,3 @@ dev_dependencies:
lints: ">=1.0.0"
mockito: ^5.2.0
build_runner: ^2.1.11

1 change: 0 additions & 1 deletion hive_flutter/test/crypto/hive_aes_native_cipher_test.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import 'dart:math';

import 'package:hive_flutter/adapters.dart';
import 'package:hive_flutter/src/crypto/hive_aes_native_cbc_cipher.dart';
import 'package:test/test.dart';

import 'directory.dart';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import 'dart:math';

import 'package:hive_flutter/adapters.dart';
import 'package:hive_flutter/src/crypto/hive_aes_native_gcm_cipher.dart';
import 'package:test/test.dart';

import 'directory.dart';
Expand Down

3 comments on commit e2a5dc3

@fisforfaheem
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please build the latest package with flutter 3.3.8 for QOL

@themisir
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @fisforfaheem, what's QOL? Sorry I haven't worked with flutter in a long time..

@fisforfaheem
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quality of Life!

Please sign in to comment.