From f8a9ff08b1ba99d26356cc728fd589adf369b161 Mon Sep 17 00:00:00 2001 From: "qingqing.wang" Date: Wed, 16 Sep 2020 11:05:13 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=82=E9=85=8DJPush=20Android=203.8.0=20,?= =?UTF-8?q?=20IOS=203.3.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/publish.yaml | 24 ++++++++++++++++++++++++ CHANGELOG.md | 2 ++ README.md | 2 +- android/build.gradle | 2 +- pubspec.yaml | 2 +- 5 files changed, 29 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/publish.yaml diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml new file mode 100644 index 0000000..d367f64 --- /dev/null +++ b/.github/workflows/publish.yaml @@ -0,0 +1,24 @@ +name: publish + +on: + push: + tags: + - v* + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + + - name: Publish + uses: sakebook/actions-flutter-pub-publisher@v1.3.0 + with: + credential: ${{ secrets.CREDENTIAL_JSON }} + flutter_package: false + skip_test: true + dry_run: true + + diff --git a/CHANGELOG.md b/CHANGELOG.md index d815213..3b96f5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +## 0.5.7 ++ 适配最新版本 JPush SDK Android 3.8.0 , IOS 3.3.6 ## 0.5.6 + 修复:iOS点击本地通知的通知栏消息缺少extras 字段 ## 0.5.5 diff --git a/README.md b/README.md index c7cbd42..b4f35eb 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ dependencies: // pub 集成 dependencies: - jpush_flutter: 0.5.6 + jpush_flutter: 0.5.7 ``` ### 配置 diff --git a/android/build.gradle b/android/build.gradle index fa26dfb..df05d9a 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -34,7 +34,7 @@ android { } dependencies { - implementation 'cn.jiguang.sdk:jpush:3.6.0' + implementation 'cn.jiguang.sdk:jpush:3.8.0' implementation 'cn.jiguang.sdk:jcore:2.3.4' // implementation 'com.android.support:appcompat-v7:28.+' compileOnly files('libs/flutter.jar') diff --git a/pubspec.yaml b/pubspec.yaml index 1e6dbdc..f7de2a6 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,6 +1,6 @@ name: jpush_flutter description: JIGUANG officially supported JPush Flutter plugin (Android & iOS). 极光推送官方支持的 Flutter 插件(Android & iOS)(https://www.jiguang.cn). -version: 0.5.6 +version: 0.5.7 author: xudong.rao homepage: https://www.jiguang.cn