Skip to content

Commit

Permalink
Prepare for 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
matus-tomlein committed Apr 9, 2024
1 parent 6cd32e8 commit d417c9b
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 9 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 0.7.0

* Add media tracking APIs to the tracker (close #49)
* Fix tracker initialization with partial platform context property overrides on Android (#53)
* Update uuid package constraint to 4.0.0 (#48) thanks to @petermnt
* Add support for Android Gradle Plugin 8 (close #46) thanks to @petermnt
* Remove documentation in the project in favour of docs.snowplow.io to reduce duplicity (#51)
* Update flutter_lints, http, js, and example dependency versions (#52)

# 0.6.0

* Upgrade mobile trackers to version 6.0
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ This will add a line with the dependency like this to your `pubspec.yaml`:

```yml
dependencies:
snowplow_tracker: ^0.6.0
snowplow_tracker: ^0.7.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.6.0"
val TRACKER_VERSION = "flutter-0.7.0"
}
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ PODS:
- Flutter (1.0.0)
- integration_test (0.0.1):
- Flutter
- snowplow_tracker (0.6.0):
- snowplow_tracker (0.7.0):
- Flutter
- SnowplowTracker (~> 6.0.2)
- SnowplowTracker (6.0.2)
Expand All @@ -27,7 +27,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS:
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
integration_test: 13825b8a9334a850581300559b8839134b124670
snowplow_tracker: f009d4863b68f986217f3abb11e5c03d6b731bfe
snowplow_tracker: 7951e14a4c8c17de35ad58eaac17dd51efda054d
SnowplowTracker: e53f7eb7de911801b741af2bd9e079e091fa7f2b

PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011
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.6.0
snowplow_tracker: ^0.7.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 @@ -258,7 +258,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.6.0"
version: "0.7.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.6.0"
static let TRACKER_VERSION = "flutter-0.7.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.6.0'
s.version = '0.7.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.6.0
version: 0.7.0
homepage: https://github.com/snowplow/snowplow-flutter-tracker
repository: https://github.com/snowplow/snowplow-flutter-tracker

Expand Down

0 comments on commit d417c9b

Please sign in to comment.