Skip to content

Commit

Permalink
Prepare for 0.5.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mscwilson committed Dec 5, 2023
1 parent 834fca1 commit 531cb68
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 10 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.5.0

* Add lifecycle autotracking config option (#39)

# 0.4.0

* Add configuration for setting custom HTTP headers for requests to the collector (#34)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ This will add a line with the dependency like this to your `pubspec.yaml`:

```yml
dependencies:
snowplow_tracker: ^0.4.0
snowplow_tracker: ^0.5.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.4.0"
val TRACKER_VERSION = "flutter-0.5.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.4.0
snowplow_tracker: ^0.5.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.4.0):
- snowplow_tracker (0.5.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: 022a7e65a05a6f6043043d58d8df870b379efe5d
snowplow_tracker: 941f2de51ed3c6964ccab206ac5ba75f326a188a
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.4.0
snowplow_tracker: ^0.5.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.4.0"
version: "0.5.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.4.0"
static let TRACKER_VERSION = "flutter-0.5.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.4.0'
s.version = '0.5.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.4.0
version: 0.5.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 531cb68

Please sign in to comment.