diff --git a/example/app.config.js b/example/app.config.js index 1c8fd78..b618a8f 100644 --- a/example/app.config.js +++ b/example/app.config.js @@ -2,7 +2,7 @@ module.exports = () => { return { name: 'klaviyo plugin example', slug: 'klaviyo-plugin-example', - version: '0.4.0', + version: '1.0.0', orientation: 'portrait', icon: './assets/images/icon.png', scheme: 'expoexample', diff --git a/example/package.json b/example/package.json index b8449f7..1630ba7 100644 --- a/example/package.json +++ b/example/package.json @@ -1,7 +1,7 @@ { "name": "example", "main": "expo-router/entry", - "version": "0.4.0", + "version": "1.0.0", "scripts": { "start": "expo start", "android": "expo run:android", @@ -29,7 +29,7 @@ "expo-status-bar": "~3.0.8", "expo-task-manager": "~14.0.8", "klaviyo-expo-plugin": "file:../", - "klaviyo-react-native-sdk": "2.3.0", + "klaviyo-react-native-sdk": "2.5.0", "memoize-one": "^6.0.0", "react": "19.1.0", "react-dom": "19.1.0", diff --git a/ios/klaviyo-plugin-configuration.plist b/ios/klaviyo-plugin-configuration.plist index 55aa0f1..155d446 100644 --- a/ios/klaviyo-plugin-configuration.plist +++ b/ios/klaviyo-plugin-configuration.plist @@ -14,6 +14,6 @@ klaviyo_sdk_plugin_name_override klaviyo-expo klaviyo_sdk_plugin_version_override - 0.4.0 + 1.0.0 diff --git a/package.json b/package.json index 149da1c..6f4fc72 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "klaviyo-expo-plugin", - "version": "0.4.0", + "version": "1.0.0", "main": "dist/plugin/withKlaviyo.js", "types": "dist/plugin/withKlaviyo.d.ts", "scripts": { diff --git a/plugin/withKlaviyoAndroid.ts b/plugin/withKlaviyoAndroid.ts index c825967..4d3455e 100644 --- a/plugin/withKlaviyoAndroid.ts +++ b/plugin/withKlaviyoAndroid.ts @@ -471,7 +471,7 @@ export const withKlaviyoPluginNameVersion: ConfigPlugin = config => { } setStringResource('klaviyo_sdk_plugin_name_override', 'klaviyo-expo'); - setStringResource('klaviyo_sdk_plugin_version_override', '0.4.0'); + setStringResource('klaviyo_sdk_plugin_version_override', '1.0.0'); return config; }); diff --git a/tests/withKlaviyoAndroid.internal.test.ts b/tests/withKlaviyoAndroid.internal.test.ts index 322da1a..75a5a5d 100644 --- a/tests/withKlaviyoAndroid.internal.test.ts +++ b/tests/withKlaviyoAndroid.internal.test.ts @@ -257,7 +257,7 @@ describe('withKlaviyoAndroid Internal Functions', () => { const result = modifier(testConfig); expect(result.modResults.resources.string).toContainEqual({ $: { name: 'klaviyo_sdk_plugin_version_override' }, - _: '0.4.0' + _: '1.0.0' }); return result; }); @@ -288,7 +288,7 @@ describe('withKlaviyoAndroid Internal Functions', () => { }); expect(result.modResults.resources.string).toContainEqual({ $: { name: 'klaviyo_sdk_plugin_version_override' }, - _: '0.4.0' + _: '1.0.0' }); return result; @@ -426,7 +426,7 @@ describe('withKlaviyoAndroid Internal Functions', () => { expect(nameString).toBeDefined(); expect(nameString._).toBe('klaviyo-expo'); expect(versionString).toBeDefined(); - expect(versionString._).toBe('0.4.0'); + expect(versionString._).toBe('1.0.0'); return result; });