From e2b918808198c2570d62dcfbc4cd3093a625376e Mon Sep 17 00:00:00 2001 From: Mohit Tejani <60129002+mohitpubnub@users.noreply.github.com> Date: Mon, 14 Nov 2022 15:01:51 +0530 Subject: [PATCH] fix: clen872 (#106) * fix-warning: github action verison * PubNub SDK v4.2.2 release. Co-authored-by: Client Engineering Bot <60980775+client-engineering-bot@users.noreply.github.com> --- .github/workflows/release.yml | 6 +++--- .pubnub.yml | 2 +- pubnub/CHANGELOG.md | 9 +++++++++ pubnub/README.md | 2 +- pubnub/lib/src/core/core.dart | 2 +- pubnub/pubspec.yaml | 2 +- 6 files changed, 16 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6cb99d4..789ebd4d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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 diff --git a/.pubnub.yml b/.pubnub.yml index 3cfaa2b6..d9d61db9 100644 --- a/.pubnub.yml +++ b/.pubnub.yml @@ -1,6 +1,6 @@ --- changelog: - - date: 2022-11-10 + - date: 2022-11-14 version: v4.2.2 changes: - type: feature diff --git a/pubnub/CHANGELOG.md b/pubnub/CHANGELOG.md index bbf940a3..69630e83 100644 --- a/pubnub/CHANGELOG.md +++ b/pubnub/CHANGELOG.md @@ -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 diff --git a/pubnub/README.md b/pubnub/README.md index 2ef2d46d..647a5964 100644 --- a/pubnub/README.md +++ b/pubnub/README.md @@ -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). diff --git a/pubnub/lib/src/core/core.dart b/pubnub/lib/src/core/core.dart index 6392be40..377bb99d 100644 --- a/pubnub/lib/src/core/core.dart +++ b/pubnub/lib/src/core/core.dart @@ -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, diff --git a/pubnub/pubspec.yaml b/pubnub/pubspec.yaml index 7e02fb99..1df49b14 100644 --- a/pubnub/pubspec.yaml +++ b/pubnub/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: 4.2.1 +version: 4.2.2 homepage: https://www.pubnub.com/docs/sdks/dart environment: