From 1cc5876ad5ec79085010b5510fe76da2c852e894 Mon Sep 17 00:00:00 2001 From: Pascal Welsch Date: Sun, 31 Dec 2023 15:10:07 +0100 Subject: [PATCH] Bump version to 1.9.0 --- CHANGELOG.md | 4 ++++ README.md | 4 ++-- lib/src/core/version.dart | 3 ++- pubspec.yaml | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90745dc4..a94f48bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.9.0 +- Add support for Flutter 3.17.0 (removing [`physicalGeometry`](https://github.com/flutter/flutter/pull/138103)) [#324](https://github.com/wiredashio/wiredash-sdk/pull/324) +- Add more `WiredashTheme` color overrides [#325](https://github.com/wiredashio/wiredash-sdk/pull/325) + ## 1.8.1 - Ignore empty strings when setting `buildNumber`, `buildVersion` or `buildCommit` via `--dart-define` [#323](https://github.com/wiredashio/wiredash-sdk/pull/323) diff --git a/README.md b/README.md index a27b0650..667b5955 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ free!_
Click on `Create new project` and enter your app's name. ### 2. Add wiredash to your pubspec.yaml ```bash -$ flutter pub add wiredash:^1.8.0 +$ flutter pub add wiredash:^1.9.0 ``` ```yaml @@ -37,7 +37,7 @@ dependencies: flutter: sdk: flutter ... - wiredash: ^1.8.0 + wiredash: ^1.9.0 ``` ### 3. Wrap your root widget with Wiredash diff --git a/lib/src/core/version.dart b/lib/src/core/version.dart index 14538919..edcb6ce8 100644 --- a/lib/src/core/version.dart +++ b/lib/src/core/version.dart @@ -40,4 +40,5 @@ /// 175 -> 1.7.5 /// 180 -> 1.8.0 /// 181 -> 1.8.1 -const wiredashSdkVersion = 181; +/// 190 -> 1.9.0 +const wiredashSdkVersion = 190; diff --git a/pubspec.yaml b/pubspec.yaml index 2c6df1ae..9e55f231 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: wiredash description: Wiredash is an interactive user feedback tool for Flutter apps including Promoter Score. -version: 1.8.1 +version: 1.9.0 homepage: https://wiredash.io repository: https://github.com/wiredashio/wiredash-sdk issue_tracker: https://github.com/wiredashio/wiredash-sdk/issues