Skip to content

Commit f69ced8

Browse files
committed
Prepare for 0.2.0 release
1 parent fbfc3fb commit f69ced8

File tree

10 files changed

+17
-10
lines changed

10 files changed

+17
-10
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 0.2.0
2+
* Configure custom POST path (#15)
3+
* Upgrade underlying mobile native trackers to version 4 (#17)
4+
* Fix schema link in documentation for ScreenView (#12)
5+
* Remove loading custom JavaScript for session context and reading cookies (#13)
6+
* Upgrade min Flutter, Dart and Android SDK versions and upgrade dependencies (#19) - thanks @koga for the Android work!
7+
18
# 0.1.0
29

310
* Add route observer for auto tracking screen or page view events on navigation (#9)

README.md

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

4848
```yml
4949
dependencies:
50-
snowplow_tracker: ^0.1.0
50+
snowplow_tracker: ^0.2.0
5151
```
5252
5353
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.1.0"
15+
val TRACKER_VERSION = "flutter-0.2.0"
1616
}

doc/01-getting-started.md

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

1717
```yml
1818
dependencies:
19-
snowplow_tracker: ^0.1.0
19+
snowplow_tracker: ^0.2.0
2020
```
2121
2222
Import the package into your Dart code:

example/ios/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ PODS:
55
- FMDB/standard (2.7.5)
66
- integration_test (0.0.1):
77
- Flutter
8-
- snowplow_tracker (0.1.0):
8+
- snowplow_tracker (0.2.0):
99
- Flutter
1010
- SnowplowTracker (~> 4.0)
1111
- SnowplowTracker (4.0.0):
@@ -33,7 +33,7 @@ SPEC CHECKSUMS:
3333
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
3434
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
3535
integration_test: a1e7d09bd98eca2fc37aefd79d4f41ad37bdbbe5
36-
snowplow_tracker: 0a5e9a965a7ef88141c2dba156c43148ee1acdb0
36+
snowplow_tracker: 486ec0bd2a083c545a4f3e426ab2123a927ee65b
3737
SnowplowTracker: 2ddc6db70af5415a87ac279f044d27d140b3a2b8
3838

3939
PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3

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.1.0
30+
snowplow_tracker: ^0.2.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
@@ -217,7 +217,7 @@ packages:
217217
path: ".."
218218
relative: true
219219
source: path
220-
version: "0.1.0"
220+
version: "0.2.0"
221221
source_span:
222222
dependency: transitive
223223
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.1.0"
15+
static let TRACKER_VERSION = "flutter-0.2.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.1.0'
7+
s.version = '0.2.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.1.0
3+
version: 0.2.0
44
homepage: https://github.com/snowplow-incubator/snowplow-flutter-tracker
55
repository: https://github.com/snowplow-incubator/snowplow-flutter-tracker
66

0 commit comments

Comments
 (0)