From baa5e7e7d243a591450510a85c7d4a1967e2aab2 Mon Sep 17 00:00:00 2001 From: Jeremiah Ogbomo Date: Mon, 18 Nov 2024 21:46:45 +0100 Subject: [PATCH 1/2] Bump dependencies --- pubspec.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pubspec.yaml b/pubspec.yaml index d6e1570..61dbf85 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,13 +7,13 @@ environment: sdk: ">=2.12.0 <4.0.0" dependencies: - clock: ^1.1.1 + clock: ">=1.1.1 <2.0.0" funding: - https://www.paypal.me/jogboms - https://www.buymeacoffee.com/jogboms dev_dependencies: - lints: ^3.0.0 - test: ^1.25.1 - coverage: ^1.7.2 + lints: ^5.0.0 + test: ^1.25.8 + coverage: ^1.11.0 From 07faae9e69bf3ac7092a0b620dcac6f09e53f648 Mon Sep 17 00:00:00 2001 From: Jeremiah Ogbomo Date: Mon, 18 Nov 2024 21:47:06 +0100 Subject: [PATCH 2/2] Bump version --- CHANGELOG.md | 4 ++++ README.md | 2 +- pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c694c..a4a5707 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 2.1.5 + +- Introduce `endOfDay` extension to `DateTime` + ## 2.1.4 - Introduce `shift` extension to `DateTime` diff --git a/README.md b/README.md index 446f961..4f5614d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ final DateTime fourHoursFromNow = DateTime.now() + Duration(hours: 4); ## 🎖 Installation ```yaml dependencies: - time: "^2.1.4" + time: "^2.1.5" ``` ### ⚡ Import diff --git a/pubspec.yaml b/pubspec.yaml index 61dbf85..3cd5ae0 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: time description: Type-safe DateTime and Duration calculations, powered by extensions. -version: 2.1.4 +version: 2.1.5 homepage: https://github.com/jogboms/time.dart environment: