Skip to content

Commit

Permalink
fix: clen872 (#106)
Browse files Browse the repository at this point in the history
* fix-warning: github action verison

* PubNub SDK v4.2.2 release.

Co-authored-by: Client Engineering Bot <[email protected]>
  • Loading branch information
mohitpubnub and client-engineering-bot authored Nov 14, 2022
1 parent aee15e4 commit e2b9188
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
release: ${{ steps.check.outputs.ready }}
steps:
- name: Checkout actions
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: pubnub/client-engineering-deployment-tools
ref: v1
Expand All @@ -33,12 +33,12 @@ jobs:
if: ${{ needs.check-release.outputs.release == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
# This should be the same as the one specified for on.pull_request.branches
ref: master
- name: Checkout actions
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: pubnub/client-engineering-deployment-tools
ref: v1
Expand Down
2 changes: 1 addition & 1 deletion .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
changelog:
- date: 2022-11-10
- date: 2022-11-14
version: v4.2.2
changes:
- type: feature
Expand Down
9 changes: 9 additions & 0 deletions pubnub/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## v4.2.2
November 14 2022

#### Added
- Support for Flutter 3.

#### Fixed
- Fixes issue of having old version of xml package dependency. Fixed the following issues reported by [@panalgin](https://github.com/panalgin): [#94](https://github.com/pubnub/dart/issues/94).

## v4.2.1
July 12 2022

Expand Down
2 changes: 1 addition & 1 deletion pubnub/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To add the package to your Dart or Flutter project, add `pubnub` as a dependency

```yaml
dependencies:
pubnub: ^4.2.1
pubnub: ^4.2.2
```
After adding the dependency to `pubspec.yaml`, run the `dart pub get` command in the root directory of your project (the same that the `pubspec.yaml` is in).
Expand Down
2 changes: 1 addition & 1 deletion pubnub/lib/src/core/core.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Core {
/// Internal module responsible for supervising.
SupervisorModule supervisor = SupervisorModule();

static String version = '4.2.1';
static String version = '4.2.2';

Core(
{Keyset? defaultKeyset,
Expand Down
2 changes: 1 addition & 1 deletion pubnub/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: 4.2.1
version: 4.2.2
homepage: https://www.pubnub.com/docs/sdks/dart

environment:
Expand Down

0 comments on commit e2b9188

Please sign in to comment.