Skip to content

Commit

Permalink
v13.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
j3k0 committed May 15, 2024
1 parent 018c14e commit 257cdec
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 8 deletions.
8 changes: 8 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion api/modules/CdvPurchase.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ ___

### PLUGIN\_VERSION

`Const` **PLUGIN\_VERSION**: ``"13.10.3"``
`Const` **PLUGIN\_VERSION**: ``"13.10.4"``

Current release number of the plugin.

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ SOFTWARE.
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-purchase"
xmlns:android="http://schemas.android.com/apk/res/android"
version="13.10.3">
version="13.10.4">

<name>Purchase</name>
<description>Cordova Purchase plugin for iOS (AppStore), Android (PlayStore) and Windows</description>
Expand Down
2 changes: 1 addition & 1 deletion src/ts/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion www/store.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down
2 changes: 1 addition & 1 deletion www/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit 257cdec

Please sign in to comment.