diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index e9b57703..fbb9d95c 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -2,6 +2,14 @@ ## 13.10 +### 13.10.4 + +#### Fix build issue on android + +Java compiler started complaining about an implicit parameter. This patch fixes it. + +Ref issue #1564 + ### 13.10.3 #### Fix issue when a callback is null or undefined diff --git a/api/modules/CdvPurchase.md b/api/modules/CdvPurchase.md index 8bba6d30..673aa48d 100644 --- a/api/modules/CdvPurchase.md +++ b/api/modules/CdvPurchase.md @@ -153,7 +153,7 @@ ___ ### PLUGIN\_VERSION -• `Const` **PLUGIN\_VERSION**: ``"13.10.3"`` +• `Const` **PLUGIN\_VERSION**: ``"13.10.4"`` Current release number of the plugin. diff --git a/package-lock.json b/package-lock.json index 2cc18449..e269d022 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "cordova-plugin-purchase", - "version": "13.10.3", + "version": "13.10.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "cordova-plugin-purchase", - "version": "13.10.3", + "version": "13.10.4", "license": "MIT", "devDependencies": { "@types/jest": "^29.5.4", diff --git a/package.json b/package.json index d8ed872d..a600f11a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-purchase", - "version": "13.10.3", + "version": "13.10.4", "description": "Cordova Purchase plugin for iOS, Android, Windows (AppStore, Play, UWP)", "cordova": { "id": "cordova-plugin-purchase", diff --git a/plugin.xml b/plugin.xml index 100763d1..9c5b4dfe 100644 --- a/plugin.xml +++ b/plugin.xml @@ -26,7 +26,7 @@ SOFTWARE. + version="13.10.4"> Purchase Cordova Purchase plugin for iOS (AppStore), Android (PlayStore) and Windows diff --git a/src/ts/store.ts b/src/ts/store.ts index ea1af055..8ed336e5 100644 --- a/src/ts/store.ts +++ b/src/ts/store.ts @@ -32,7 +32,7 @@ namespace CdvPurchase { /** * Current release number of the plugin. */ - export const PLUGIN_VERSION = '13.10.3'; + export const PLUGIN_VERSION = '13.10.4'; /** * Entry class of the plugin. diff --git a/www/store.d.ts b/www/store.d.ts index 39a1ff23..6f518859 100644 --- a/www/store.d.ts +++ b/www/store.d.ts @@ -743,7 +743,7 @@ declare namespace CdvPurchase { /** * Current release number of the plugin. */ - const PLUGIN_VERSION = "13.10.3"; + const PLUGIN_VERSION = "13.10.4"; /** * Entry class of the plugin. */ diff --git a/www/store.js b/www/store.js index ca218910..1312b455 100644 --- a/www/store.js +++ b/www/store.js @@ -1348,7 +1348,7 @@ var CdvPurchase; /** * Current release number of the plugin. */ - CdvPurchase.PLUGIN_VERSION = '13.10.3'; + CdvPurchase.PLUGIN_VERSION = '13.10.4'; /** * Entry class of the plugin. */