-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
72 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,59 @@ | ||
## Version 1 | ||
|
||
### 1.1.1 | ||
## 2.0.0 | ||
Stable null safety release | ||
|
||
### Changed | ||
- `bytes` getter replaced with `toBytes()` method | ||
- Generators renamed | ||
- `NameUuidGenerator` now has separate `generateFromString()` and `generateFromBytes()` methods | ||
|
||
### Added | ||
- `NameUuidGenerator` now has separate `generateFromString()` and `generateFromBytes()` methods | ||
|
||
### Removed | ||
- `Uuid()` constructor with string param | ||
- `generate()` method from `NameUuidGenerator` | ||
|
||
## 1.1.1 | ||
Small refactoring of time-based generator | ||
|
||
### 1.1.0 | ||
Utility class for convinient UUID string generation and comparison | ||
## 1.1.0 | ||
|
||
### 1.0.2 | ||
Release | ||
### Added | ||
Utility class for convenient UUID string generation and comparison | ||
|
||
### 1.0.0-beta | ||
## 1.0.2 | ||
Release | ||
|
||
## 1.0.0-beta | ||
More tests and documentation | ||
|
||
## Beta | ||
## 0.9.0-beta | ||
|
||
### Added | ||
- Abstract `Uuid` class now has `compareTo` method implemented | ||
|
||
### 0.9.0-beta | ||
### Changed | ||
- Time-based generator is refactored to use `Stopwatch` instead of `DateTime` calls. | ||
Parameter `clockSequence` is now deprecated in `TimeBasedUuidGenerator` constructor | ||
- Comparison is refactored to treat v1 UUIDs differently | ||
- Abstract `Uuid` class now has `compareTo` method implemented | ||
|
||
### 0.8.0-beta | ||
- Refactored string parsing (does not affect API) | ||
- Added comparison operators `>` `>=` `<` `<=` | ||
## 0.8.0-beta | ||
|
||
### Added | ||
- Added comparison operators `>` `>=` `<` `<=` | ||
|
||
### Changed | ||
- Refactored string parsing | ||
|
||
### 0.7.0-dev | ||
- Dart 2.0 is a minimum required version | ||
## 0.7.0-dev | ||
- Dart 2.0 is a minimum required version | ||
|
||
### 0.6.0-dev | ||
- `toBytes()` method was renamed to `bytes` getter | ||
## 0.6.0-dev | ||
- `toBytes()` method was renamed to `bytes` getter | ||
|
||
### 0.5.2-dev | ||
## 0.5.2-dev | ||
- Initial package documentation | ||
|
||
### 0.5.1-dev | ||
- Initial relase, and tests | ||
## 0.5.1-dev | ||
- Initial release, and tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name: uuid_type | ||
description: 'UUID type, parser and generators. Can generate v1, v4, and v5 UUIDs' | ||
version: 1.1.1 | ||
version: 2.0.0 | ||
uploader: Denis Portnov <[email protected]> | ||
homepage: https://github.com/denixport/dart-uuid | ||
environment: | ||
sdk: '>=2.0.0 <3.0.0' | ||
sdk: '>=2.12.0 <3.0.0' | ||
dependencies: | ||
crypto: '>=2.0.0 <3.0.0' | ||
crypto: '^3.0.0' | ||
dev_dependencies: | ||
test: '^1.3.0' | ||
pedantic: ^1.4.0 | ||
test: '^1.16.0' | ||
pedantic: ^1.9.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters