Skip to content

Commit

Permalink
Prepare for 0.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Jul 12, 2023
1 parent 5950764 commit aec4fd3
Show file tree
Hide file tree
Showing 10 changed files with 19 additions and 10 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,17 @@
# 0.4.0

* Add configuration for setting custom HTTP headers for requests to the collector (#34)
* Upgrade underlying iOS and Android trackers to version 5 (#36)
* Remove deprecated kotlin-android-extensions plugin in example app (#35)
* Upgrade JavaScript tracker in the example app to version 3.13

# 0.3.0

* Enable screen and application context on mobile (#27)
* Add anonymous tracking features (#16)

# 0.2.0

* Configure custom POST path (#15)
* Upgrade underlying mobile native trackers to version 4 (#17)
* Fix schema link in documentation for ScreenView (#12)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ This will add a line with the dependency like this to your `pubspec.yaml`:

```yml
dependencies:
snowplow_tracker: ^0.3.0
snowplow_tracker: ^0.4.0
```

Import the package into your Dart code:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
package com.snowplowanalytics.snowplow_tracker

object TrackerVersion {
val TRACKER_VERSION = "flutter-0.3.0"
val TRACKER_VERSION = "flutter-0.4.0"
}
2 changes: 1 addition & 1 deletion doc/01-getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This will add a line with the dependency like to your pubspec.yaml:

```yml
dependencies:
snowplow_tracker: ^0.3.0
snowplow_tracker: ^0.4.0
```

Import the package into your Dart code:
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ PODS:
- FMDB/standard (2.7.5)
- integration_test (0.0.1):
- Flutter
- snowplow_tracker (0.3.0):
- snowplow_tracker (0.4.0):
- Flutter
- SnowplowTracker (~> 5.4)
- SnowplowTracker (5.4.0):
Expand Down Expand Up @@ -33,7 +33,7 @@ SPEC CHECKSUMS:
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
FMDB: 2ce00b547f966261cd18927a3ddb07cb6f3db82a
integration_test: 13825b8a9334a850581300559b8839134b124670
snowplow_tracker: f3d9416ea1d05205fc242d4786b98d207337a6dc
snowplow_tracker: 022a7e65a05a6f6043043d58d8df870b379efe5d
SnowplowTracker: a7fa5ae461955637f773a51c941635f39a5b0747

PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
Expand Down
2 changes: 1 addition & 1 deletion example/lib/overview.dart
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ This will add a line with the dependency like this to your `pubspec.yaml`:
```yml
dependencies:
snowplow_tracker: ^0.3.0
snowplow_tracker: ^0.4.0
```
Import the package into your Dart code:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.3.0"
version: "0.4.0"
source_span:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/Classes/TrackerVersion.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
import Foundation

class TrackerVersion {
static let TRACKER_VERSION = "flutter-0.3.0"
static let TRACKER_VERSION = "flutter-0.4.0"
}
2 changes: 1 addition & 1 deletion ios/snowplow_tracker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
Pod::Spec.new do |s|
s.name = 'snowplow_tracker'
s.version = '0.3.0'
s.version = '0.4.0'
s.summary = 'A package for tracking Snowplow events in Flutter apps.'
s.description = <<-DESC
A package for tracking Snowplow events in Flutter apps.
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: snowplow_tracker
description: A package for tracking Snowplow events in Flutter apps
version: 0.3.0
version: 0.4.0
homepage: https://github.com/snowplow-incubator/snowplow-flutter-tracker
repository: https://github.com/snowplow-incubator/snowplow-flutter-tracker

Expand Down

0 comments on commit aec4fd3

Please sign in to comment.