Skip to content

Commit 4f9a594

Browse files
committed
Prepare for 0.8.0 release
1 parent d26aba9 commit 4f9a594

File tree

9 files changed

+13
-9
lines changed

9 files changed

+13
-9
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.8.0
2+
3+
* Add integration with WebView tracker (#59)
4+
15
# 0.7.1
26

37
* Automatically generate ID for ScreenViews (#55)

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.1
53+
snowplow_tracker: ^0.8.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.7.1"
15+
val TRACKER_VERSION = "flutter-0.8.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.7.1):
5+
- snowplow_tracker (0.8.0):
66
- Flutter
77
- SnowplowTracker (~> 6.2.2)
88
- SnowplowTracker (6.2.2)
@@ -32,7 +32,7 @@ EXTERNAL SOURCES:
3232
SPEC CHECKSUMS:
3333
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
3434
integration_test: 2d03ab552da9a1f408709a6acf3d7ca4cb3cb307
35-
snowplow_tracker: 561463fa466be9cde484e64281d7e6b8aea0070c
35+
snowplow_tracker: 5d4e578d401811a7c021b44ee305848465420d12
3636
SnowplowTracker: bd92a5bd67705ec2a7dc630576c22e13cf6c8b45
3737
webview_flutter_wkwebview: 45a041c7831641076618876de3ba75c712860c6b
3838

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.1
30+
snowplow_tracker: ^0.8.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
@@ -266,7 +266,7 @@ packages:
266266
path: ".."
267267
relative: true
268268
source: path
269-
version: "0.7.1"
269+
version: "0.8.0"
270270
source_span:
271271
dependency: transitive
272272
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.1"
15+
static let TRACKER_VERSION = "flutter-0.8.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.7.1'
7+
s.version = '0.8.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.7.1
3+
version: 0.8.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)