Skip to content

Commit

Permalink
Version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zihejia committed Mar 25, 2024
1 parent 4930f39 commit 74b4506
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 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 = '2.2.0'
s.version = '2.3.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 @@ -11,7 +11,7 @@ class Mixpanel {
static const MethodChannel _channel = const MethodChannel(
'mixpanel_flutter', StandardMethodCodec(MixpanelMessageCodec()));
static Map<String, String> _mixpanelProperties = {
'\$lib_version': '2.2.0',
'\$lib_version': '2.3.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: 2.2.0
version: 2.3.0
homepage: https://mixpanel.com
repository: https://github.com/mixpanel/mixpanel-flutter
issue_tracker: https://github.com/mixpanel/mixpanel-flutter/issues
Expand Down
6 changes: 3 additions & 3 deletions test/mixpanel_flutter_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void main() {
'optOutTrackingDefault': false,
'trackAutomaticEvents': true,
'mixpanelProperties': {
'\$lib_version': '2.2.0',
'\$lib_version': '2.3.0',
'mp_lib': 'flutter',
},
'superProperties': null,
Expand All @@ -60,7 +60,7 @@ void main() {
'optOutTrackingDefault': true,
'trackAutomaticEvents': true,
'mixpanelProperties': {
'\$lib_version': '2.2.0',
'\$lib_version': '2.3.0',
'mp_lib': 'flutter',
},
'superProperties': null,
Expand All @@ -82,7 +82,7 @@ void main() {
'optOutTrackingDefault': true,
'trackAutomaticEvents': false,
'mixpanelProperties': {
'\$lib_version': '2.2.0',
'\$lib_version': '2.3.0',
'mp_lib': 'flutter',
},
'superProperties': null,
Expand Down

0 comments on commit 74b4506

Please sign in to comment.