Skip to content

Commit

Permalink
PubNub SDK v1.1.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
client-engineering-bot committed May 6, 2020
1 parent 27d4aa2 commit 44613f9
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
---
changelog:
-
changes:
-
text: "Expose missing types."
type: bug
date: May 6, 20
version: v1.1.1
-
changes:
-
Expand Down Expand Up @@ -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"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
16 changes: 15 additions & 1 deletion lib/pubnub.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion lib/src/core/core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 44613f9

Please sign in to comment.