diff --git a/CHANGELOG.md b/CHANGELOG.md index 730f68d5..972ed6bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [6.3.21](https://github.com/Cap-go/capacitor-updater/compare/6.3.20...6.3.21) (2024-11-23) + + +### Bug Fixes + +* message missing id ([6c29308](https://github.com/Cap-go/capacitor-updater/commit/6c293085351b5b48b2cc1f0659f42684a8a37c54)) + ### [6.3.20](https://github.com/Cap-go/capacitor-updater/compare/6.3.19...6.3.20) (2024-11-20) diff --git a/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java b/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java index 8f45bc1c..d155cb9a 100644 --- a/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java +++ b/android/src/main/java/ee/forgr/capacitor_updater/CapacitorUpdaterPlugin.java @@ -54,7 +54,7 @@ public class CapacitorUpdaterPlugin extends Plugin { private static final String channelUrlDefault = "https://plugin.capgo.app/channel_self"; - private final String PLUGIN_VERSION = "6.3.20"; + private final String PLUGIN_VERSION = "6.3.21"; private static final String DELAY_CONDITION_PREFERENCES = ""; private SharedPreferences.Editor editor; diff --git a/ios/Plugin/CapacitorUpdaterPlugin.swift b/ios/Plugin/CapacitorUpdaterPlugin.swift index 90dc645e..076deb36 100644 --- a/ios/Plugin/CapacitorUpdaterPlugin.swift +++ b/ios/Plugin/CapacitorUpdaterPlugin.swift @@ -43,7 +43,7 @@ public class CapacitorUpdaterPlugin: CAPPlugin, CAPBridgedPlugin { CAPPluginMethod(name: "getBuiltinVersion", returnType: CAPPluginReturnPromise) ] public var implementation = CapacitorUpdater() - private let PLUGIN_VERSION: String = "6.3.20" + private let PLUGIN_VERSION: String = "6.3.21" static let updateUrlDefault = "https://plugin.capgo.app/updates" static let statsUrlDefault = "https://plugin.capgo.app/stats" static let channelUrlDefault = "https://plugin.capgo.app/channel_self" diff --git a/package.json b/package.json index a90370c7..5bd3904b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@capgo/capacitor-updater", - "version": "6.3.20", + "version": "6.3.21", "license": "MPL-2.0", "description": "Live update for capacitor apps", "main": "dist/plugin.cjs.js",