Skip to content

Commit d417c9b

Browse files
committed
Prepare for 0.7.0 release
1 parent 6cd32e8 commit d417c9b

File tree

9 files changed

+18
-9
lines changed

9 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 0.7.0
2+
3+
* Add media tracking APIs to the tracker (close #49)
4+
* Fix tracker initialization with partial platform context property overrides on Android (#53)
5+
* 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
7+
* Remove documentation in the project in favour of docs.snowplow.io to reduce duplicity (#51)
8+
* Update flutter_lints, http, js, and example dependency versions (#52)
9+
110
# 0.6.0
211

312
* Upgrade mobile trackers to version 6.0

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.6.0
53+
snowplow_tracker: ^0.7.0
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.6.0"
15+
val TRACKER_VERSION = "flutter-0.7.0"
1616
}

example/ios/Podfile.lock

Lines changed: 2 additions & 2 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.6.0):
5+
- snowplow_tracker (0.7.0):
66
- Flutter
77
- SnowplowTracker (~> 6.0.2)
88
- SnowplowTracker (6.0.2)
@@ -27,7 +27,7 @@ EXTERNAL SOURCES:
2727
SPEC CHECKSUMS:
2828
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
2929
integration_test: 13825b8a9334a850581300559b8839134b124670
30-
snowplow_tracker: f009d4863b68f986217f3abb11e5c03d6b731bfe
30+
snowplow_tracker: 7951e14a4c8c17de35ad58eaac17dd51efda054d
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.6.0
30+
snowplow_tracker: ^0.7.0
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.6.0"
261+
version: "0.7.0"
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.6.0"
15+
static let TRACKER_VERSION = "flutter-0.7.0"
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.6.0'
7+
s.version = '0.7.0'
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.6.0
3+
version: 0.7.0
44
homepage: https://github.com/snowplow/snowplow-flutter-tracker
55
repository: https://github.com/snowplow/snowplow-flutter-tracker
66

0 commit comments

Comments
 (0)