Skip to content

Commit 98b078d

Browse files
committed
Bump up patch version
1 parent b03f2d0 commit 98b078d

File tree

3 files changed

+22
-15
lines changed

3 files changed

+22
-15
lines changed

CHANGELOG.md

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,37 @@
1-
## 1.1.0
2-
- Utility class for convinient UUID string generation and comparison
1+
## Version 1
32

4-
## 1.0.2
5-
Release
3+
### 1.1.1
4+
Small refactoring of time-based generator
65

7-
## 1.0.0-beta
8-
- More tests and documentation
6+
### 1.1.0
7+
Utility class for convinient UUID string generation and comparison
98

10-
## 0.9.0-beta
9+
### 1.0.2
10+
Release
11+
12+
### 1.0.0-beta
13+
More tests and documentation
14+
15+
## Beta
16+
17+
### 0.9.0-beta
1118
- Time-based generator is refactored to use `Stopwatch` instead of `DateTime` calls.
1219
Parameter `clockSequence` is now deprecated in `TimeBasedUuidGenerator` constructor
1320
- Comparison is refactored to treat v1 UUIDs differently
1421
- Abstract `Uuid` class now has `compareTo` method implemented
1522

16-
## 0.8.0-beta
23+
### 0.8.0-beta
1724
- Refactored string parsing (does not affect API)
1825
- Added comparison operators `>` `>=` `<` `<=`
1926

20-
## 0.7.0-dev
27+
### 0.7.0-dev
2128
- Dart 2.0 is a minimum required version
2229

23-
## 0.6.0-dev
30+
### 0.6.0-dev
2431
- `toBytes()` method was renamed to `bytes` getter
2532

26-
## 0.5.2-dev
33+
### 0.5.2-dev
2734
- Initial package documentation
2835

29-
## 0.5.1-dev
36+
### 0.5.1-dev
3037
- Initial relase, and tests

lib/src/generators.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class TimeBasedUuidGenerator {
3939
// clock sequence, initialized with random value
4040
int _clockSeq = _rng.nextInt(1 << 14);
4141

42-
// ticks used for last generated UUID
42+
// system clock ticks when last generated UUID
4343
int _lastTicks = 0;
4444

45-
// extra 100ns intervals counter for low-res clocks
45+
// additional 100ns intervals for low-res clocks
4646
int _extraIntervals = 0;
4747

4848
// 6 bytes of node ID

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: uuid_type
22
description: 'UUID type, parser and generators. Can generate v1, v4, and v5 UUIDs'
3-
version: 1.1.0
3+
version: 1.1.1
44
uploader: Denis Portnov <denixport@gmail.com>
55
homepage: https://github.com/denixport/dart-uuid
66
environment:

0 commit comments

Comments
 (0)