Skip to content

Commit c0a7273

Browse files
committed
Prepare for v0.7.1 release
1 parent 829d445 commit c0a7273

File tree

9 files changed

+16
-12
lines changed

9 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1+
# 0.7.1
2+
3+
* Automatically generate ID for ScreenViews (#55)
4+
15
# 0.7.0
26

3-
* Add media tracking APIs to the tracker (close #49)
7+
* Add media tracking APIs to the tracker (#49)
48
* Fix tracker initialization with partial platform context property overrides on Android (#53)
59
* Update uuid package constraint to 4.0.0 (#48) thanks to @petermnt
6-
* Add support for Android Gradle Plugin 8 (close #46) thanks to @petermnt
10+
* Add support for Android Gradle Plugin 8 (#46) thanks to @petermnt
711
* Remove documentation in the project in favour of docs.snowplow.io to reduce duplicity (#51)
812
* Update flutter_lints, http, js, and example dependency versions (#52)
913

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ This will add a line with the dependency like this to your `pubspec.yaml`:
5050

5151
```yml
5252
dependencies:
53-
snowplow_tracker: ^0.7.0
53+
snowplow_tracker: ^0.7.1
5454
```
5555
5656
Import the package into your Dart code:

android/src/main/kotlin/com/snowplowanalytics/snowplow_tracker/TrackerVersion.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
package com.snowplowanalytics.snowplow_tracker
1313

1414
object TrackerVersion {
15-
val TRACKER_VERSION = "flutter-0.7.0"
15+
val TRACKER_VERSION = "flutter-0.7.1"
1616
}

example/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PODS:
22
- Flutter (1.0.0)
33
- integration_test (0.0.1):
44
- Flutter
5-
- snowplow_tracker (0.7.0):
5+
- snowplow_tracker (0.7.1):
66
- Flutter
77
- SnowplowTracker (~> 6.0.2)
88
- SnowplowTracker (6.0.2)
@@ -26,8 +26,8 @@ EXTERNAL SOURCES:
2626

2727
SPEC CHECKSUMS:
2828
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
29-
integration_test: 13825b8a9334a850581300559b8839134b124670
30-
snowplow_tracker: 7951e14a4c8c17de35ad58eaac17dd51efda054d
29+
integration_test: ce0a3ffa1de96d1a89ca0ac26fca7ea18a749ef4
30+
snowplow_tracker: 0236afd8fee445e9e018a0d0111e41e64d9e9ad3
3131
SnowplowTracker: e53f7eb7de911801b741af2bd9e079e091fa7f2b
3232

3333
PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011

example/lib/overview.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This will add a line with the dependency like this to your `pubspec.yaml`:
2727
2828
```yml
2929
dependencies:
30-
snowplow_tracker: ^0.7.0
30+
snowplow_tracker: ^0.7.1
3131
```
3232
3333
Import the package into your Dart code:

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ packages:
258258
path: ".."
259259
relative: true
260260
source: path
261-
version: "0.7.0"
261+
version: "0.7.1"
262262
source_span:
263263
dependency: transitive
264264
description:

ios/Classes/TrackerVersion.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
import Foundation
1313

1414
class TrackerVersion {
15-
static let TRACKER_VERSION = "flutter-0.7.0"
15+
static let TRACKER_VERSION = "flutter-0.7.1"
1616
}

ios/snowplow_tracker.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'snowplow_tracker'
7-
s.version = '0.7.0'
7+
s.version = '0.7.1'
88
s.summary = 'A package for tracking Snowplow events in Flutter apps.'
99
s.description = <<-DESC
1010
A package for tracking Snowplow events in Flutter apps.

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: snowplow_tracker
22
description: A package for tracking Snowplow events in Flutter apps
3-
version: 0.7.0
3+
version: 0.7.1
44
homepage: https://github.com/snowplow/snowplow-flutter-tracker
55
repository: https://github.com/snowplow/snowplow-flutter-tracker
66

0 commit comments

Comments
 (0)