From 386ffefa84e7bfc6227d81f52e61ab1de2610421 Mon Sep 17 00:00:00 2001 From: Hans Kokx Date: Wed, 30 Oct 2024 09:44:14 +0100 Subject: [PATCH] ## 1.1.2 - Ensure new `Color` extensions are exported from the package. Signed-off-by: Hans Kokx --- CHANGELOG.md | 4 ++++ lib/arcane_helper_utils.dart | 1 + pubspec.yaml | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ae50a26..8acde17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.1.2 + +- Ensure new `Color` extensions are exported from the package. + ## 1.1.1 - Added `Color` extension for luminance. Thanks, @rania-run! diff --git a/lib/arcane_helper_utils.dart b/lib/arcane_helper_utils.dart index 68f8ffe..7ab4840 100644 --- a/lib/arcane_helper_utils.dart +++ b/lib/arcane_helper_utils.dart @@ -1,5 +1,6 @@ library arcane_helper_utils; +export "package:arcane_helper_utils/src/extensions/color.dart"; export "package:arcane_helper_utils/src/extensions/date_time.dart"; export "package:arcane_helper_utils/src/extensions/string.dart"; export "package:arcane_helper_utils/src/extensions/string_jwt.dart"; diff --git a/pubspec.yaml b/pubspec.yaml index 0fc12ef..3249ce7 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: arcane_helper_utils description: Provides a variety of helpful utilities and extensions for Flutter and Dart. -version: 1.1.1 +version: 1.1.2 repository: https://github.com/hanskokx/arcane_helper_utils issue_tracker: https://github.com/hanskokx/arcane_helper_utils/issues