Skip to content

Commit 83c643d

Browse files
committed
Prepare for 2.1.1 release
1 parent 5a9eee8 commit 83c643d

File tree

8 files changed

+12
-8
lines changed

8 files changed

+12
-8
lines changed

.github/workflows/e2e-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
e2e:
8-
runs-on: macos-latest
8+
runs-on: macos-12
99
timeout-minutes: 60
1010
env:
1111
TURBO_CACHE_DIR: .turbo/android-e2e

.github/workflows/e2e-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
jobs:
77
e2e:
8-
runs-on: macos-latest
8+
runs-on: macos-12
99
timeout-minutes: 60
1010
env:
1111
TURBO_CACHE_DIR: .turbo/ios-e2e

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 2.1.1 (2024-07-03)
2+
--------------------------
3+
Update tracker and example app dependencies
4+
15
Version 2.1.0 (2024-02-21)
26
--------------------------
37
Upgrade to mobile trackers version 6 and add screen engagement tracking (close #90)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
package com.snowplow.reactnativetracker.util
22

33
object TrackerVersion {
4-
const val RN_TRACKER_VERSION = "rn-2.1.0"
4+
const val RN_TRACKER_VERSION = "rn-2.1.1"
55
}

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ PODS:
488488
- React-jsi (= 0.72.15)
489489
- React-logger (= 0.72.15)
490490
- React-perflogger (= 0.72.15)
491-
- snowplow-react-native-tracker (2.1.0):
491+
- snowplow-react-native-tracker (2.1.1):
492492
- RCT-Folly (= 2021.07.22.00)
493493
- React-Core
494494
- SnowplowTracker (~> 6.0)
@@ -719,7 +719,7 @@ SPEC CHECKSUMS:
719719
React-runtimescheduler: ae08ede2e0267be2a4d8ba82a54d5908949d5a34
720720
React-utils: 8eb3c12fd4a4da6df3824f7d9a961d73a6ed6e5d
721721
ReactCommon: d2de36ed3eebe700d7169b9e80f7d1a4b98e178d
722-
snowplow-react-native-tracker: 423a8ed6af6d94df5167096635735d7c0d634e9a
722+
snowplow-react-native-tracker: d947a5d147cb5e401f0c3361a9fde13fb2aaf942
723723
SnowplowTracker: 6b19c331d5b765bda8b97b1c70ab52491524da60
724724
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
725725
Yoga: 6f5ab94cd8b1ecd04b6e973d0bc583ede2a598cc

ios/Util/TrackerVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import Foundation
22

3-
let kRNTrackerVersion = "rn-2.1.0"
3+
let kRNTrackerVersion = "rn-2.1.1"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@snowplow/react-native-tracker",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "A library for tracking Snowplow events in React Native",
55
"homepage": "https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/react-native-tracker/",
66
"main": "lib/commonjs/index",

src/jsCore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { schemas } from './constants';
3737
import { v4 as uuid } from 'uuid';
3838

3939
// Tracker version added to the events
40-
const trackerVersion = 'rn-2.1.0';
40+
const trackerVersion = 'rn-2.1.1';
4141

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

0 commit comments

Comments
 (0)