Skip to content

Commit 531cb68

Browse files
committed
Prepare for 0.5.0 release
1 parent 834fca1 commit 531cb68

File tree

10 files changed

+14
-10
lines changed

10 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.5.0
2+
3+
* Add lifecycle autotracking config option (#39)
4+
15
# 0.4.0
26

37
* Add configuration for setting custom HTTP headers for requests to the collector (#34)

README.md

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

4949
```yml
5050
dependencies:
51-
snowplow_tracker: ^0.4.0
51+
snowplow_tracker: ^0.5.0
5252
```
5353
5454
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.4.0"
15+
val TRACKER_VERSION = "flutter-0.5.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.4.0
19+
snowplow_tracker: ^0.5.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.4.0):
8+
- snowplow_tracker (0.5.0):
99
- Flutter
1010
- SnowplowTracker (~> 5.4)
1111
- SnowplowTracker (5.4.0):
@@ -33,7 +33,7 @@ SPEC CHECKSUMS:
3333
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
3434
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
3535
integration_test: 13825b8a9334a850581300559b8839134b124670
36-
snowplow_tracker: 022a7e65a05a6f6043043d58d8df870b379efe5d
36+
snowplow_tracker: 941f2de51ed3c6964ccab206ac5ba75f326a188a
3737
SnowplowTracker: a7fa5ae461955637f773a51c941635f39a5b0747
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.4.0
30+
snowplow_tracker: ^0.5.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
@@ -226,7 +226,7 @@ packages:
226226
path: ".."
227227
relative: true
228228
source: path
229-
version: "0.4.0"
229+
version: "0.5.0"
230230
source_span:
231231
dependency: transitive
232232
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.4.0"
15+
static let TRACKER_VERSION = "flutter-0.5.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.4.0'
7+
s.version = '0.5.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.4.0
3+
version: 0.5.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)