Skip to content

Commit c12adfb

Browse files
Prepare release 4.0.0 (#100)
Co-authored-by: jamesnrokt <182576425+jamesnrokt@users.noreply.github.com>
1 parent 1a5fcc0 commit c12adfb

10 files changed

Lines changed: 14 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
## [4.0.0] - 2026-06-11
13+
1214
- Bumped Android native dependencies to `com.mparticle:android-core:5.79.0` and `com.mparticle:android-rokt-kit:5.79.0`.
1315
- Bumped iOS pod specs to `mParticle-Apple-SDK ~> 9.2` and `mParticle-Rokt ~> 9.2`.
1416
- Renamed the Stripe-specific payment kit to a unified one: `Kits/RoktStripePayment/``Kits/RoktPaymentExtension/`, npm id `@mparticle/cordova-rokt-stripe-payment-kit``@mparticle/cordova-rokt-payment-extension`, pod `RoktStripePaymentExtension ~> 0.1``RoktPaymentExtension ~> 2.0`. The new pod internally routes to Stripe for Apple Pay / card / AfterPay / Clearpay / PayPal.
@@ -68,7 +70,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6870

6971
- Add GDPR and CCPA Consent ([#13](https://github.com/mParticle/cordova-plugin-mparticle/issues/13)) ([60368be](https://github.com/mParticle/cordova-plugin-mparticle/commit/60368be9d9ec8f471bc8d5a7b479ed0ce7d9f05e))
7072

71-
[unreleased]: https://github.com/mParticle/cordova-plugin-mparticle/compare/3.0.1...HEAD
73+
[unreleased]: https://github.com/mParticle/cordova-plugin-mparticle/compare/4.0.0...HEAD
74+
[4.0.0]: https://github.com/mParticle/cordova-plugin-mparticle/compare/3.0.1...4.0.0
7275
[3.0.1]: https://github.com/mParticle/cordova-plugin-mparticle/compare/3.0.0...3.0.1
7376
[3.0.0]: https://github.com/mParticle/cordova-plugin-mparticle/compare/2.2.4...3.0.0
7477
[2.2.4]: https://github.com/mParticle/cordova-plugin-mparticle/compare/2.2.3...2.2.4

Kits/Rokt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mparticle/cordova-rokt-kit",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"description": "Adds support for Rokt to your Cordova project",
55
"homepage": "https://www.mparticle.com",
66
"repository": {

Kits/Rokt/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
33
id="@mparticle/cordova-rokt-kit"
4-
version="3.0.1">
4+
version="4.0.0">
55
<name>MParticle Rokt Kit</name>
66
<description>Adds support for Rokt to your Cordova project</description>
77
<platform name="android">

Kits/RoktPaymentExtension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mparticle/cordova-rokt-payment-extension",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"description": "Adds Rokt payment extension support (Apple Pay, AfterPay/Clearpay, PayPal via Stripe) to your Cordova project",
55
"homepage": "https://www.mparticle.com",
66
"repository": {

Kits/RoktPaymentExtension/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
33
id="@mparticle/cordova-rokt-payment-extension"
4-
version="3.0.1">
4+
version="4.0.0">
55
<name>MParticle Rokt Payment Extension Kit</name>
66
<description>Adds Rokt payment extension support (Apple Pay, AfterPay/Clearpay, PayPal via Stripe) to your Cordova project</description>
77
<platform name="ios">

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.1
1+
4.0.0

plugin/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mparticle/cordova-sdk",
3-
"version": "3.0.1",
3+
"version": "4.0.0",
44
"description": "Cordova plugin for mParticle",
55
"homepage": "https://www.mparticle.com",
66
"repository": {

plugin/plugin.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
33
id="@mparticle/cordova-sdk"
4-
version="3.0.1">
4+
version="4.0.0">
55
<name>MParticle</name>
66
<js-module src="www/mparticle.js" name="mparticle">
77
<clobbers target="mparticle" />

plugin/src/ios/CDVMParticle.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ @interface CDVMParticle : CDVPlugin
99
@implementation CDVMParticle
1010

1111
- (void)pluginInitialize {
12-
[MParticle _setWrapperSdk_internal:MPWrapperSdkCordova version:@"3.0.1"];
12+
[MParticle _setWrapperSdk_internal:MPWrapperSdkCordova version:@"4.0.0"];
1313
}
1414

1515
- (void)logEvent:(CDVInvokedUrlCommand*)command {

0 commit comments

Comments
 (0)