Skip to content

Commit 260ce85

Browse files
committed
Bump version to 1.2.0
1 parent 8c839cc commit 260ce85

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

WordPressAnalytics/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ android {
2828
buildToolsVersion "23.0.2"
2929

3030
defaultConfig {
31-
versionName "1.1.0"
31+
versionName "1.2.0"
3232
minSdkVersion 14
3333
targetSdkVersion 23
3434
}

WordPressAnalytics/src/main/java/org/wordpress/android/analytics/AnalyticsTrackerMixpanel.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -430,13 +430,13 @@ private AnalyticsTrackerMixpanelInstructionsForStat instructionsForStat(
430430
mixpanelInstructionsForEventName("Editor - Toggled New Editor Off");
431431
instructions.setPeoplePropertyToValue("enabled_new_editor", true);
432432
break;
433-
case EDITOR_UPDLOAD_MEDIA_FAILED:
433+
case EDITOR_UPLOAD_MEDIA_FAILED:
434434
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
435435
mixpanelInstructionsForEventName("Editor - Upload Media Failed");
436436
instructions.setSuperPropertyAndPeoplePropertyToIncrement("number_of_times_editor_upload_media_failed");
437437
instructions.setCurrentDateForPeopleProperty("last_time_editor_upload_media_failed");
438438
break;
439-
case EDITOR_UPDLOAD_MEDIA_RETRIED:
439+
case EDITOR_UPLOAD_MEDIA_RETRIED:
440440
instructions = AnalyticsTrackerMixpanelInstructionsForStat.
441441
mixpanelInstructionsForEventName("Editor - Retried Uploading Media");
442442
instructions.setSuperPropertyAndPeoplePropertyToIncrement("number_of_times_editor_retried_uploading_media");
@@ -966,4 +966,3 @@ public void incrementSessionCount() {
966966
editor.apply();
967967
}
968968
}
969-

WordPressAnalytics/src/main/java/org/wordpress/android/analytics/AnalyticsTrackerNosara.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,10 +135,10 @@ public void track(AnalyticsTracker.Stat stat, Map<String, ?> properties) {
135135
case EDITOR_TOGGLED_ON:
136136
eventName = "editor_toggled_on";
137137
break;
138-
case EDITOR_UPDLOAD_MEDIA_FAILED:
138+
case EDITOR_UPLOAD_MEDIA_FAILED:
139139
eventName = "editor_upload_media_failed";
140140
break;
141-
case EDITOR_UPDLOAD_MEDIA_RETRIED:
141+
case EDITOR_UPLOAD_MEDIA_RETRIED:
142142
eventName = "editor_upload_media_retried";
143143
break;
144144
case EDITOR_CLOSED:

0 commit comments

Comments
 (0)