diff --git a/CHANGELOG.md b/CHANGELOG.md index 372eb4cde..b7082409e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,69 @@ # Change Log +## 3.0.0 + +**Overview:** + +In this major release, there are many breaking changes to the Android platform. The primary changes in this release are dropping Android Support Library for AndroidX, updating the Google Services Gradle Plugin requirement, refactoring the code to Kotlin, and upgrading all other third-party libraries. See below for more details. + +--- + +**Requirement Changes:** + +* Cordova-Android: 9.x + +--- + +**Libraries & Dependencie Updates and Changes:** + +* Bumped `me.leolin:ShortcutBadger@1.1.22` +* Bumped `Google Services Gradle Plugin@4.3.8` +* Migrated from **Android Support Library** to **AndroidX** + * Added `androidx.core:core@1.6.+` + +--- + +**Breaking:** + +* feat!(android): migrate source code to kotlin w/ refactors (#123) + * kotlin@1.5.20 + * add before_compile hookscript for cordova-android 9.x support + * converted all java files to kotlin + * updted target-dir path for kotlin files + * refactored with improved null checks + * removed some duplicated code + * updated logging (more logging & better tagging)¥ +* feat!(android): bump platform requirements (#122) +* feat!(android): bump me.leolin:ShortcutBadger@1.1.22 (#121) +* feat!(android): bump Google Services Gradle Plugin@4.3.8 (#120) +* feat!(android): Migrate to AndroidX (#119) + * feat!(android): migrate ASL to AndroidX + * feat!(android): swap framework support-v13 w/ androidx.core + * feat!(android): force AndroidXEnabled to true + * feat!(android): bump androidx.core:core@1.6.+ + * doc(android): add androidx core version + +**Fixes:** + +* fix(docs): update TS type import to new package name (#109) + +**Chores:** + +* chore: rebuilt package-lock.json (#131) +* chore: bump npm dev dependencies (#132) (#133) +* chore(npm): bump devDep, rebuild package-lock & fix audit (#110) +* chore(npm): bump devDep @cordova/eslint-config@^4.0.0 w/ fixes (#144) + +**CI:** + +* ci: remove old travis configs (#128) +* ci: add codacy badge (#129) +* ci: add gh-actions badge to readme (#130) + +**Docs:** + +* doc: fixed minor typo (#98) + ## 2.0.0 **Overview:** diff --git a/package-lock.json b/package-lock.json index c17ce81fb..a67521b35 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@havesource/cordova-plugin-push", - "version": "3.0.0-dev.2", + "version": "3.0.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@havesource/cordova-plugin-push", - "version": "3.0.0-dev.2", + "version": "3.0.0", "license": "MIT", "devDependencies": { "@babel/cli": "^7.15.4", diff --git a/package.json b/package.json index e295e2d6f..f588d27d8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@havesource/cordova-plugin-push", - "version": "3.0.0-dev.2", + "version": "3.0.0", "description": "Register and receive push notifications.", "scripts": { "build": "babel src/js --out-dir www", diff --git a/plugin.xml b/plugin.xml index 939a84f72..c5ea77e76 100755 --- a/plugin.xml +++ b/plugin.xml @@ -1,7 +1,7 @@ + id="@havesource/cordova-plugin-push" version="3.0.0"> Cordova Push Plugin Enable receiving push notifications on Android, iOS and Windows devices. Android uses Firebase Cloud Messaging. iOS uses Apple APNS Notifications. Windows uses Microsoft WNS Notifications.