Skip to content

Commit 421b33a

Browse files
authored
v2.1.6 #79
2 parents eabd537 + 1edc22d commit 421b33a

4 files changed

Lines changed: 11 additions & 7 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v6
1818
- uses: dart-lang/setup-dart@v1
1919
with:
2020
sdk: dev
@@ -35,7 +35,7 @@ jobs:
3535
run: dart run coverage:format_coverage -l -i ./coverage/test/time_test.dart.vm.json -o ./coverage/lcov.info
3636

3737
- name: Upload coverage to codecov
38-
uses: codecov/codecov-action@v4
38+
uses: codecov/codecov-action@v5
3939
with:
4040
token: ${{ secrets.CODECOV_TOKEN }}
4141
fail_ci_if_error: true

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.1.6
2+
3+
- Include `milliseconds` and `microseconds` in `timeOfDay` extension to `DateTime`
4+
15
## 2.1.5
26

37
- Introduce `endOfDay` extension to `DateTime`

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ final DateTime fourHoursFromNow = DateTime.now() + Duration(hours: 4);
1212
## 🎖 Installation
1313
```yaml
1414
dependencies:
15-
time: "^2.1.5"
15+
time: "^2.1.6"
1616
```
1717
1818
### ⚡ Import

pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: time
22
description: Type-safe DateTime and Duration calculations, powered by extensions.
3-
version: 2.1.5
3+
version: 2.1.6
44
homepage: https://github.com/jogboms/time.dart
55

66
environment:
@@ -14,6 +14,6 @@ funding:
1414
- https://www.buymeacoffee.com/jogboms
1515

1616
dev_dependencies:
17-
lints: ^5.0.0
18-
test: ^1.25.8
19-
coverage: ^1.11.0
17+
lints: ^6.0.0
18+
test: ^1.28.0
19+
coverage: ^1.15.0

0 commit comments

Comments
 (0)