From 59f9a205b286c9a7541eeb8243b32c19b9afb0a4 Mon Sep 17 00:00:00 2001 From: Herbert Poul Date: Sun, 7 Mar 2021 10:22:36 +0000 Subject: [PATCH] null safety migration --- CHANGELOG.md | 4 ++++ pubspec.lock | 57 ++++++++++++++++++++++++++-------------------------- pubspec.yaml | 9 ++++++--- 3 files changed, 39 insertions(+), 31 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c16f3d3..7ca7787 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.0 + +* Nullsafety "migration" + ## 0.1.0 * Windows support. diff --git a/pubspec.lock b/pubspec.lock index 0872a4b..e58fa30 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -7,70 +7,63 @@ packages: name: argon2_ffi_base url: "https://pub.dartlang.org" source: hosted - version: "0.1.0+1" + version: "1.0.0" async: dependency: transitive description: name: async url: "https://pub.dartlang.org" source: hosted - version: "2.4.2" + version: "2.5.0" boolean_selector: dependency: transitive description: name: boolean_selector url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.1.0" characters: dependency: transitive description: name: characters url: "https://pub.dartlang.org" source: hosted - version: "1.1.0-nullsafety" + version: "1.1.0" charcode: dependency: transitive description: name: charcode url: "https://pub.dartlang.org" source: hosted - version: "1.1.3" + version: "1.2.0" clock: dependency: transitive description: name: clock url: "https://pub.dartlang.org" source: hosted - version: "1.0.1" + version: "1.1.0" collection: dependency: transitive description: name: collection url: "https://pub.dartlang.org" source: hosted - version: "1.15.0-nullsafety" + version: "1.15.0" fake_async: dependency: transitive description: name: fake_async url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.2.0" ffi: dependency: transitive description: name: ffi url: "https://pub.dartlang.org" source: hosted - version: "0.1.3" - ffi_helper: - dependency: transitive - description: - name: ffi_helper - url: "https://pub.dartlang.org" - source: hosted - version: "1.4.0" + version: "1.0.0" flutter: dependency: "direct main" description: flutter @@ -81,27 +74,34 @@ packages: description: flutter source: sdk version: "0.0.0" + logging: + dependency: transitive + description: + name: logging + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.0" matcher: dependency: transitive description: name: matcher url: "https://pub.dartlang.org" source: hosted - version: "0.12.8" + version: "0.12.10" meta: dependency: transitive description: name: meta url: "https://pub.dartlang.org" source: hosted - version: "1.3.0-nullsafety" + version: "1.3.0" path: dependency: transitive description: name: path url: "https://pub.dartlang.org" source: hosted - version: "1.7.0" + version: "1.8.0" sky_engine: dependency: transitive description: flutter @@ -113,55 +113,56 @@ packages: name: source_span url: "https://pub.dartlang.org" source: hosted - version: "1.7.0" + version: "1.8.0" stack_trace: dependency: transitive description: name: stack_trace url: "https://pub.dartlang.org" source: hosted - version: "1.9.5" + version: "1.10.0" stream_channel: dependency: transitive description: name: stream_channel url: "https://pub.dartlang.org" source: hosted - version: "2.0.0" + version: "2.1.0" string_scanner: dependency: transitive description: name: string_scanner url: "https://pub.dartlang.org" source: hosted - version: "1.0.5" + version: "1.1.0" term_glyph: dependency: transitive description: name: term_glyph url: "https://pub.dartlang.org" source: hosted - version: "1.1.0" + version: "1.2.0" test_api: dependency: transitive description: name: test_api url: "https://pub.dartlang.org" source: hosted - version: "0.2.17" + version: "0.2.19" typed_data: dependency: transitive description: name: typed_data url: "https://pub.dartlang.org" source: hosted - version: "1.3.0-nullsafety" + version: "1.3.0" vector_math: dependency: transitive description: name: vector_math url: "https://pub.dartlang.org" source: hosted - version: "2.1.0-nullsafety" + version: "2.1.0" sdks: - dart: ">=2.9.0-18.0 <2.9.0" + dart: ">=2.12.0 <3.0.0" + flutter: ">=1.10.0" diff --git a/pubspec.yaml b/pubspec.yaml index 2638107..b540072 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,14 +1,17 @@ name: argon2_ffi description: Argon2 implementation by using ffi as flutter plugin. use argon2_ffi_base for the actual dart code. -version: 0.1.0 +homeage: https://github.com/authpass/argon2_ffi +repository: https://github.com/authpass/argon2_ffi +version: 1.0.0 environment: - sdk: ">=2.1.0 <3.0.0" + sdk: '>=2.12.0 <3.0.0' + flutter: ">=1.10.0 <2.0.0" dependencies: flutter: sdk: flutter - argon2_ffi_base: '>=0.1.0+1 <1.0.0' + argon2_ffi_base: ^1.0.0 dev_dependencies: