Skip to content

Commit

Permalink
Version 1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredmixpanel committed Jun 24, 2022
1 parent e338d49 commit b431254
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ios/mixpanel_flutter.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'mixpanel_flutter'
s.version = '1.5.1'
s.version = '1.6.0'
s.summary = 'Official Flutter Tracking Library for Mixpanel Analytics'
s.homepage = 'https://www.mixpanel.com'
s.license = { :file => '../LICENSE' }
Expand Down
2 changes: 1 addition & 1 deletion lib/mixpanel_flutter.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Mixpanel {
static const MethodChannel _channel = const MethodChannel(
'mixpanel_flutter', StandardMethodCodec(MixpanelMessageCodec()));
static Map<String, String> _mixpanelProperties = {
'\$lib_version': '1.5.1',
'\$lib_version': '1.6.0',
'mp_lib': 'flutter',
};

Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: mixpanel_flutter
description: Official Flutter Tracking SDK for Mixpanel Analytics developed and maintained by Mixpanel, Inc.
version: 1.5.1
version: 1.6.0
homepage: https://mixpanel.com

environment:
Expand Down
4 changes: 2 additions & 2 deletions test/mixpanel_flutter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ void main() {
'token': "test token",
'optOutTrackingDefault': false,
'mixpanelProperties': {
'\$lib_version': '1.5.1',
'\$lib_version': '1.6.0',
'mp_lib': 'flutter',
},
'superProperties': null,
Expand All @@ -58,7 +58,7 @@ void main() {
'token': "test token",
'optOutTrackingDefault': true,
'mixpanelProperties': {
'\$lib_version': '1.5.1',
'\$lib_version': '1.6.0',
'mp_lib': 'flutter',
},
'superProperties': null,
Expand Down

0 comments on commit b431254

Please sign in to comment.