From 21bfd2c504f287630db931ff1a1dc63e38d72518 Mon Sep 17 00:00:00 2001 From: Quintin Willison Date: Wed, 5 May 2021 16:24:05 +0100 Subject: [PATCH 1/3] Bump version number (pre-release: preview). --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 935c057ed..924f92d62 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: ably_flutter description: A wrapper around Ably's Cocoa and Java client library SDKs, providing iOS and Android support. -version: 1.2.0-preview.1 +version: 1.2.0-preview.2 repository: https://github.com/ably/ably-flutter environment: From a3d561aef9a2eff7413b87309e03610982ee7508 Mon Sep 17 00:00:00 2001 From: Quintin Willison Date: Wed, 5 May 2021 16:35:21 +0100 Subject: [PATCH 2/3] Update change log. --- CHANGELOG.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cbb443d1e..9ce6358dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [1.2.0-preview.2](https://github.com/ably/ably-flutter/tree/1.2.0-preview.2) + +[Full Changelog](https://github.com/ably/ably-flutter/compare/1.2.0-preview.1...1.2.0-preview.2) + +**Implemented enhancements:** + +- Presence subscription example [\#53](https://github.com/ably/ably-flutter/issues/53) +- typed Message\#data [\#35](https://github.com/ably/ably-flutter/issues/35) + +**Fixed bugs:** + +- compilation error on iOS [\#112](https://github.com/ably/ably-flutter/issues/112) + +**Merged pull requests:** + +- Fix iOS issue with token details auth [\#115](https://github.com/ably/ably-flutter/pull/115) ([tiholic](https://github.com/tiholic)) +- Add docs workflow [\#97](https://github.com/ably/ably-flutter/pull/97) ([QuintinWillison](https://github.com/QuintinWillison)) +- Realtime Presence [\#81](https://github.com/ably/ably-flutter/pull/81) ([tiholic](https://github.com/tiholic)) +- Feature/rest presence history [\#70](https://github.com/ably/ably-flutter/pull/70) ([tiholic](https://github.com/tiholic)) +- Feature/docstrings [\#69](https://github.com/ably/ably-flutter/pull/69) ([tiholic](https://github.com/tiholic)) +- Rest Channel Presence\#get [\#55](https://github.com/ably/ably-flutter/pull/55) ([tiholic](https://github.com/tiholic)) + ## [1.2.0-preview.1](https://github.com/ably/ably-flutter/tree/1.2.0-preview.1) [Full Changelog](https://github.com/ably/ably-flutter/compare/1.0.0+dev.2...1.2.0-preview.1) From 88414c298d3cc3ac2c4ba7240bd207d8c2d5dd4a Mon Sep 17 00:00:00 2001 From: Quintin Willison Date: Wed, 5 May 2021 16:37:52 +0100 Subject: [PATCH 3/3] Fix warning generated by `flutter pub publish --dry-run`. Package validation found the following potential issue: * The Flutter constraint should not have an upper bound. In your pubspec.yaml the constraint is currently `>=1.17.0 <2.0.0`. You can replace that with just the lower bound: `>=1.17.0`. See https://dart.dev/go/flutter-upper-bound-deprecation Package has 1 warning. --- pubspec.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pubspec.yaml b/pubspec.yaml index 924f92d62..a1beb8be2 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -5,7 +5,7 @@ repository: https://github.com/ably/ably-flutter environment: sdk: ">=2.6.0 <3.0.0" - flutter: ">=1.17.0 <2.0.0" + flutter: ">=1.17.0" dependencies: collection: ^1.14.13