Skip to content

Commit

Permalink
Release 3.0.0 using stable nullsafety packages
Browse files Browse the repository at this point in the history
  • Loading branch information
daegalus committed Feb 22, 2021
1 parent ffdef40 commit da17534
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v3.0.0

* Release nullsafety version

v3.0.0-nullsafety.1

* [BREAKING CHANGE] Changed `parse()` to throw a FormatException instead of returning NIL uuids or partially handled UUIDs.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ pub.dartlang.org: (you can use 'any' instead of a version if you just want the l

```yaml
dependencies:
uuid: 3.0.0-nullsafety.1
uuid: 3.0.0
```

```dart
Expand Down
12 changes: 4 additions & 8 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,16 +1,12 @@
name: uuid
version: 3.0.0-nullsafety.1
version: 3.0.0
description: >
RFC4122 (v1, v4, v5) UUID Generator and Parser for all Dart platforms (Web, VM, Flutter)
homepage: https://github.com/Daegalus/dart-uuid
environment:
sdk: ">=2.12.0-0 <3.0.0"
dependencies:
crypto: "^3.0.0-nullsafety.0"
crypto: "^3.0.0"
dev_dependencies:
pedantic: ">=1.9.0"
test: ^1.16.0-nullsafety.13
dependency_overrides:
# We're overriding crypto because test depends on web_socket_channel which
# doesn't support crypto 3.0 yet. That's only a dev dependency though.
crypto: ^3.0.0-nullsafety
pedantic: ">=1.10.0"
test: ^1.16.3

0 comments on commit da17534

Please sign in to comment.