Skip to content

Commit

Permalink
Prep for 4.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
daegalus committed Aug 30, 2023
1 parent 3416381 commit 8b0ada2
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 13 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

v4.0.0

* toBytes on UuidValue now does not validate by default, but has the option `validate` that can be set to true if you need validation when calling it. (Thanks @Erhannis)

v4.0.0-beta3-1

* Ensure that any custom RNG implementation produces Uint8Lists of length 16. (Thanks @wph44)
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,9 @@ Features:

### Pubspec

There are 2 options. Directly from git, or from pub.dartlang.org

pub.dartlang.org: (you can use 'any' instead of a version if you just want the latest always)

```yaml
dependencies:
uuid: ^4.0.0-beta1
uuid: ^4.0.0
```
```dart
Expand Down
5 changes: 0 additions & 5 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,8 @@ linter:
rules:
- always_declare_return_types
- avoid_dynamic_calls
- camel_case_types
- empty_constructor_bodies
- annotate_overrides
- avoid_init_to_null
- one_member_abstracts
- slash_for_doc_comments
- unnecessary_brace_in_string_interps

analyzer:
errors:
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: uuid
version: 4.0.0-beta3-1
version: 4.0.0
description: >
RFC4122 (v1, v4, v5, v6, v7, v8) UUID Generator and Parser for Dart
homepage: https://github.com/Daegalus/dart-uuid
Expand All @@ -9,5 +9,5 @@ dependencies:
crypto: ^3.0.0
sprintf: ^7.0.0
dev_dependencies:
lints: ^2.0.1
test: ^1.24.0
lints: ^2.1.1
test: ^1.24.6

0 comments on commit 8b0ada2

Please sign in to comment.