Skip to content

Commit

Permalink
Prepare for 2.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Oct 5, 2023
1 parent 262fff8 commit b843b68
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
Version 2.0.0 (2023-09-29)
--------------------------
Upgrade project structure and update native trackers to version 5 (#199)
Disable automatic screen view tracking in the iOS and Android tracker by default (#198)
Fix buffer option in emitter configuration on Android to set correct value for large setting (#197)

Version 1.4.0 (2022-02-04)
--------------------------
Add JavaScript tracker core to be used in Expo managed workflow when native trackers are not available (#188)
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-1.4.0"
const val RN_TRACKER_VERSION = "rn-2.0.0"
}
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ PODS:
- React-jsi (= 0.72.4)
- React-logger (= 0.72.4)
- React-perflogger (= 0.72.4)
- snowplow-react-native-tracker (1.4.0):
- snowplow-react-native-tracker (2.0.0):
- RCT-Folly (= 2021.07.22.00)
- React-Core
- SnowplowTracker (~> 5.4)
Expand Down Expand Up @@ -726,7 +726,7 @@ SPEC CHECKSUMS:
React-runtimescheduler: 4941cc1b3cf08b792fbf666342c9fc95f1969035
React-utils: b79f2411931f9d3ea5781404dcbb2fa8a837e13a
ReactCommon: 4b2bdcb50a3543e1c2b2849ad44533686610826d
snowplow-react-native-tracker: d3ec9b0cb178d6d8db96fd45c7f0f296fbd98d7a
snowplow-react-native-tracker: e0acb614d407ecd3670d758085bb01b4029723c8
SnowplowTracker: f954f5fe985411819ccdadd50ce142b7ad17efe2
SocketRocket: f32cd54efbe0f095c4d7594881e52619cfe80b17
Yoga: 3efc43e0d48686ce2e8c60f99d4e6bd349aff981
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-1.4.0"
let kRNTrackerVersion = "rn-2.0.0"
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": "1.4.0",
"version": "2.0.0",
"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 @@ -48,7 +48,7 @@ import { schemas } from './constants';
import { v4 as uuid } from 'uuid';

// Tracker version added to the events
const trackerVersion = 'rn-1.4.0';
const trackerVersion = 'rn-2.0.0';

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

0 comments on commit b843b68

Please sign in to comment.