Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

| Property | Value |
|----------|-------|
| Current Version | 5.7.3 |
| Current Version | 5.7.4 |
| React Native | 0.79.2 |
| TypeScript | 5.2.2 (strict mode) |
| Node.js | v20 (see `.nvmrc`) |
Expand Down Expand Up @@ -630,6 +630,7 @@ See `VERSIONS.md` for native SDK version mapping:

| React Native SDK | iOS SDK | Android SDK |
|------------------|---------|-------------|
| 5.7.4 | 5.7.4 | 5.7.4 |
| 5.7.3 | 5.7.4 | 5.7.4 |
| 5.7.2 | 5.7.2 | 5.7.3 |
| 5.7.1 | 5.7.1 | 5.7.1 |
Expand Down
1 change: 1 addition & 0 deletions VERSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,4 @@ This file provides the underlying native SDK versions that the React Native SDK
| 5.7.1 | 5.7.1 | 5.7.1 |
| 5.7.2 | 5.7.2 | 5.7.3 |
| 5.7.3 | 5.7.4 | 5.7.4 |
| 5.7.4 | 5.7.4 | 5.7.4 |
2 changes: 1 addition & 1 deletion packages/amazon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purchasely/react-native-purchasely-amazon",
"version": "5.7.3",
"version": "5.7.4",
"description": "Purchasely Amazon In-App Purchases dependency",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/android-player/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purchasely/react-native-purchasely-android-player",
"version": "5.7.3",
"version": "5.7.4",
"description": "Player Android",
"source": "./src/index.ts",
"main": "./lib/commonjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/google/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purchasely/react-native-purchasely-google",
"version": "5.7.3",
"version": "5.7.4",
"description": "Purchasely Google Play Billing dependency",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/huawei/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@purchasely/react-native-purchasely-huawei",
"version": "5.7.3",
"version": "5.7.4",
"description": "Purchasely Huawei Mobile Services dependencies",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/purchasely/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-native-purchasely",
"title": "Purchasely React Native",
"version": "5.7.3",
"version": "5.7.4",
"description": "Purchasely is a solution to ease the integration and boost your In-App Purchase & Subscriptions on the App Store, Google Play Store and Huawei App Gallery.",
"source": "./src/index.tsx",
"main": "./lib/commonjs/index.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/purchasely/src/__tests__/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describe('Purchasely SDK', () => {
'test-user',
mockConstants.logLevelDebug,
mockConstants.runningModeFull,
'5.7.3'
'5.7.4'
)
})

Expand All @@ -203,7 +203,7 @@ describe('Purchasely SDK', () => {
null,
mockConstants.logLevelError,
mockConstants.runningModeFull,
'5.7.3'
'5.7.4'
)
})

Expand Down
4 changes: 2 additions & 2 deletions packages/purchasely/src/__tests__/types.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ describe('Purchasely Types', () => {
const event: PurchaselyEvent = {
name: 'PURCHASE_TAPPED',
properties: {
sdk_version: '5.7.3',
sdk_version: '5.7.4',
event_name: 'PURCHASE_TAPPED',
event_created_at_ms: 1705315200000,
event_created_at: '2024-01-15T12:00:00Z',
Expand All @@ -339,7 +339,7 @@ describe('Purchasely Types', () => {
}

expect(event.name).toBe('PURCHASE_TAPPED')
expect(event.properties.sdk_version).toBe('5.7.3')
expect(event.properties.sdk_version).toBe('5.7.4')
})
})

Expand Down
2 changes: 1 addition & 1 deletion packages/purchasely/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import type {
PurchaselyUserAttribute,
} from './types';

const purchaselyVersion = '5.7.3';
const purchaselyVersion = '5.7.4';

const constants = NativeModules.Purchasely.getConstants() as Constants;

Expand Down
Loading