Skip to content

Commit

Permalink
Prepare for 2.1.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Oct 30, 2024
1 parent f2b7cff commit 5ff68fa
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 2.1.2 (2024-10-31)
--------------------------
Fix crash on iOS on React Native new architecture (#212)

Version 2.1.1 (2024-07-03)
--------------------------
Update tracker and example app dependencies
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package com.snowplow.reactnativetracker.util

object TrackerVersion {
const val RN_TRACKER_VERSION = "rn-2.1.1"
const val RN_TRACKER_VERSION = "rn-2.1.2"
}
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ PODS:
- React-jsi (= 0.72.15)
- React-logger (= 0.72.15)
- React-perflogger (= 0.72.15)
- snowplow-react-native-tracker (2.1.1):
- snowplow-react-native-tracker (2.1.2):
- RCT-Folly (= 2021.07.22.00)
- React-Core
- SnowplowTracker (~> 6.0)
Expand Down Expand Up @@ -719,7 +719,7 @@ SPEC CHECKSUMS:
React-runtimescheduler: ae08ede2e0267be2a4d8ba82a54d5908949d5a34
React-utils: 8eb3c12fd4a4da6df3824f7d9a961d73a6ed6e5d
ReactCommon: d2de36ed3eebe700d7169b9e80f7d1a4b98e178d
snowplow-react-native-tracker: d947a5d147cb5e401f0c3361a9fde13fb2aaf942
snowplow-react-native-tracker: 3f0b508aacf6ec7a4aceb2ce269387129641e13a
SnowplowTracker: 6b19c331d5b765bda8b97b1c70ab52491524da60
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
Yoga: 6f5ab94cd8b1ecd04b6e973d0bc583ede2a598cc
Expand Down
2 changes: 1 addition & 1 deletion ios/Util/TrackerVersion.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import Foundation

let kRNTrackerVersion = "rn-2.1.1"
let kRNTrackerVersion = "rn-2.1.2"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@snowplow/react-native-tracker",
"version": "2.1.1",
"version": "2.1.2",
"description": "A library for tracking Snowplow events in React Native",
"homepage": "https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/react-native-tracker/",
"main": "lib/commonjs/index",
Expand Down
2 changes: 1 addition & 1 deletion src/jsCore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { schemas } from './constants';
import { v4 as uuid } from 'uuid';

// Tracker version added to the events
const trackerVersion = 'rn-2.1.1';
const trackerVersion = 'rn-2.1.2';

interface Tracker extends TrackerCore {
setDomainUserId: (duid: string | undefined) => void;
Expand Down

0 comments on commit 5ff68fa

Please sign in to comment.