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 1647c77 commit 87f94c0
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 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
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:/snowplow-incubator/snowplow-flutter-tracker
repository: https:/snowplow-incubator/snowplow-flutter-tracker

Expand Down

0 comments on commit 87f94c0

Please sign in to comment.