From 44613f98c9916fc164756bba7603eb55c5f33ae0 Mon Sep 17 00:00:00 2001 From: Client Date: Wed, 6 May 2020 12:04:15 +0000 Subject: [PATCH] PubNub SDK v1.1.1 release. --- .pubnub.yml | 9 ++++++++- CHANGELOG.md | 7 +++++++ lib/pubnub.dart | 16 +++++++++++++++- lib/src/core/core.dart | 2 +- pubspec.yaml | 2 +- 5 files changed, 32 insertions(+), 4 deletions(-) diff --git a/.pubnub.yml b/.pubnub.yml index 8dc9cfaa..c3606447 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,5 +1,12 @@ --- changelog: + - + changes: + - + text: "Expose missing types." + type: bug + date: May 6, 20 + version: v1.1.1 - changes: - @@ -181,4 +188,4 @@ supported-platforms: platforms: - "Dart SDK >=2.6.0 <3.0.0" version: "PubNub Dart SDK" -version: "1.1.0" +version: "1.1.1" diff --git a/CHANGELOG.md b/CHANGELOG.md index fcbcdcf1..7830b5e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [v1.1.1](https://github.com/pubnub/dart/releases/tag/v1.1.1) +May 6 2020 + +[Full Changelog](https://github.com/pubnub/dart/compare/v1.1.0...v1.1.1) + +- 🐛 Expose missing types. + ## [v1.1.0](https://github.com/pubnub/dart/releases/tag/v1.1.0) May 5 2020 diff --git a/lib/pubnub.dart b/lib/pubnub.dart index 9b09ddc5..c64cc593 100644 --- a/lib/pubnub.dart +++ b/lib/pubnub.dart @@ -9,8 +9,22 @@ export './src/dx/channel/channel.dart' show Channel; export './src/dx/channel/channel_group.dart' show ChannelGroup; export './src/dx/_endpoints/publish.dart' show PublishResult; -export './src/dx/_endpoints/presence.dart' show HeartbeatResult, LeaveResult; +export './src/dx/_endpoints/presence.dart' + show HeartbeatResult, LeaveResult, StateInfo; export './src/dx/_endpoints/signal.dart' show SignalResult; +export './src/dx/_endpoints/push.dart' + show + PushGatewayExtension, + EnvironmentExtension, + AddPushChannelsResult, + ListPushChannelsResult, + RemoveDeviceResult, + RemovePushChannelsResult; +export './src/dx/_endpoints/message_action.dart' + show + FetchMessageActionsResult, + AddMessageActionResult, + DeleteMessageActionResult; export './src/dx/subscribe/subscription.dart' show Subscription; export './src/dx/subscribe/envelope.dart' diff --git a/lib/src/core/core.dart b/lib/src/core/core.dart index a58ac796..9d1eeb16 100644 --- a/lib/src/core/core.dart +++ b/lib/src/core/core.dart @@ -20,7 +20,7 @@ class Core { NetworkModule networking; ParserModule parser; - static String version = '1.1.0'; + static String version = '1.1.1'; Core( {Keyset defaultKeyset, diff --git a/pubspec.yaml b/pubspec.yaml index c0372ae4..370d5e19 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: pubnub description: PubNub SDK v5 for Dart lang (with Flutter support) that allows you to create real-time applications -version: 1.1.0 +version: 1.1.1 homepage: https://www.pubnub.com/docs environment: