Skip to content

Commit d8c71d9

Browse files
committed
Fix changelog, update lints, fix comment angle brackets
1 parent 06e373f commit d8c71d9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ v4.5.1
88
v4.5.0
99

1010
* Change to CryptoRNG by default, you will now need to use MathRNG explicitly if you want speed over security. (thanks @Rexios80)
11-
* This also works around a regression in the Dart SDK on WASM targets: https://github.com/dart-lang/sdk/issues/56609
11+
* This also works around a regression in the Dart SDK on WASM targets: <https://github.com/dart-lang/sdk/issues/56609>
1212
* Deprecate the use of `Uuid.NAMESPACE*` and `UuidV5.NAMESPACE`, and switch to using a proper const enum for this. (thanks @bymoye)
1313
* These will be removed once sufficient time has been made for the deprecation notice to be seen. Most likely v5.0.
1414
* Please use the new `Namespace` enum in `enums.dart`.

lib/parsing.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class UuidParsing {
2525
return bytes;
2626
}
2727

28-
/// Parses the provided [uuid] into a list of byte values as a List<int>.
28+
/// Parses the provided [uuid] into a list of byte values as a List&lt;int&gt;.
2929
/// Can optionally be provided a [buffer] to write into and
3030
/// a positional [offset] for where to start inputting into the buffer.
3131
///

lib/uuid.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ class Uuid {
6262
/// ```
6363
const Uuid({this.goptions});
6464

65-
/// Parses the provided [uuid] into a list of byte values as a List<int>.
65+
/// Parses the provided [uuid] into a list of byte values as a List&lt;int&gt;.
6666
/// Can optionally be provided a [buffer] to write into and
6767
/// a positional [offset] for where to start inputting into the buffer.
6868
/// Throws FormatException if the UUID is invalid. Optionally you can set

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
meta: ^1.10.0
1212
fixnum: ^1.1.0
1313
dev_dependencies:
14-
lints: ^4.0.0
14+
lints: ^6.0.0
1515
test: ^1.25.8
1616
funding:
1717
- https://ko-fi.com/yulian

0 commit comments

Comments
 (0)