Skip to content

Commit 7933ad4

Browse files
authored
Merge pull request #122 from mixpanel/fix-lib-prop-autoevents
Fix common mobile events not showing 'react-native' as property value for 'Mixpanel Library'
2 parents 9d54f3e + 5f7099d commit 7933ad4

File tree

6 files changed

+1473
-1414
lines changed

6 files changed

+1473
-1414
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
enhancementLabel: '### Enhancements'
5757
stripGeneratorNotice: true
5858
bugsLabel: '### Fixes'
59-
issues: true
60-
issuesWoLabels: true
59+
issues: false
60+
issuesWoLabels: false
6161
pullRequests: true
6262
prWoLabels: true
6363
author: false

MixpanelReactNative.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ Pod::Spec.new do |s|
1919
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES' }
2020

2121
s.dependency "React"
22-
s.dependency "Mixpanel-swift", '3.0.0'
22+
s.dependency "Mixpanel-swift", '3.1.0'
2323
end

Samples/SimpleMixpanel/App.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
22
import { Button, SafeAreaView } from "react-native";
33
import { Mixpanel } from 'mixpanel-react-native';
44

5-
const mixpanel = new Mixpanel("5d9d3df08d1c34a272abf23d892820bf");
5+
const mixpanel = new Mixpanel("Your Project Token");
66
mixpanel.init();
77

88
// *************************************

0 commit comments

Comments
 (0)