Skip to content

Commit ed207f5

Browse files
Merge pull request #62 from snowplow/release/0.8.0
Release 0.8.0
2 parents 4eb31ea + a0e4deb commit ed207f5

40 files changed

+1526
-43
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
# -- Micro --
5151
- name: Cache Micro
5252
id: cache-micro
53-
uses: actions/cache@v2
53+
uses: actions/cache@v4
5454
with:
5555
path: micro.jar
5656
key: ${{ runner.os }}-micro
@@ -91,7 +91,7 @@ jobs:
9191
# -- Micro --
9292
- name: Cache Micro
9393
id: cache-micro
94-
uses: actions/cache@v2
94+
uses: actions/cache@v4
9595
with:
9696
path: micro.jar
9797
key: ${{ runner.os }}-micro
@@ -137,7 +137,7 @@ jobs:
137137
# -- Micro --
138138
- name: Cache Micro
139139
id: cache-micro
140-
uses: actions/cache@v2
140+
uses: actions/cache@v4
141141
with:
142142
path: micro.jar
143143
key: ${{ runner.os }}-micro

.gitignore

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,117 @@
2727
.dart_tool/
2828
.packages
2929
build/
30+
31+
# Gradle
32+
# ------
33+
.gradle
34+
/build
35+
/*/build
36+
/*/*/build
37+
/*/*/*/build
38+
/*/*/*/*/*/build
39+
/**/docs/src/samples/**/build
40+
/**/docs/src/snippets/**/build
41+
/*/internal-android-performance-testing/build-android-libs
42+
test-splits/
43+
/gradle/verification-keyring.gpg
44+
45+
# Kotlin
46+
# ------
47+
.kotlin
48+
49+
# IDEA
50+
# ----
51+
!/.idea
52+
/.idea/*
53+
# Needed to track entry points and nullability annotations (see https://youtrack.jetbrains.com/issue/IDEA-354114 and https://youtrack.jetbrains.com/issue/IDEA-354115)
54+
!/.idea/misc.xml
55+
!/.idea/codeStyles
56+
!/.idea/inspectionProfiles
57+
!/.idea/icon.png
58+
!/.idea/icon_dark.png
59+
*/**/.idea
60+
*/**/.shelf
61+
.shelf
62+
/*.iml
63+
/*/*.iml
64+
/*/*/*.iml
65+
/*/*/*/*.iml
66+
/*/*/*/*/*.iml
67+
/out
68+
/*/out
69+
/*/*/out
70+
/*/*/*/out
71+
/*/*/*/*/out
72+
/.teamcity/target
73+
/gradle.ipr
74+
/gradle.iws
75+
76+
# Eclipse
77+
# -------
78+
*.classpath
79+
*.project
80+
*.settings
81+
/bin
82+
/subprojects/*/bin
83+
atlassian-ide-plugin.xml
84+
.metadata/
85+
86+
# NetBeans
87+
# --------
88+
.nb-gradle
89+
.nb-gradle-properties
90+
91+
# Vim
92+
# ---
93+
*.sw[nop]
94+
95+
# Emacs
96+
# -----
97+
*~
98+
\#*\#
99+
.\#*
100+
101+
# Textmate
102+
# --------
103+
.textmate
104+
105+
# Sublime Text
106+
# ------------
107+
*.sublime-*
108+
109+
# jEnv
110+
# ----
111+
.java-version
112+
113+
# macOS
114+
# ----
115+
.DS_Store
116+
117+
# HPROF
118+
# -----
119+
*.hprof
120+
121+
# Work dirs
122+
# ---------
123+
/incoming-distributions
124+
/intTestHomeDir
125+
126+
# Logs
127+
# ----
128+
/*.log
129+
130+
# Thread dumps for troubleshooting
131+
*.threaddump
132+
# ps output for cleaning up leaking Java processes
133+
*.psoutput
134+
135+
# oh-my-zsh gradle plugin
136+
.gradletasknamecache
137+
138+
# Added GE support maven support to the maven build in .teamcity, per the GE docs, this dir is NOT to be committed
139+
.teamcity/.mvn/.develocity/
140+
/discoclient.properties
141+
142+
# Ignore local configuration files for asdf, allowing the JDK to be configured for project (https://asdf-vm.com)
143+
.tool-versions

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 0.8.0
2+
3+
* Add integration with WebView tracker (#59)
4+
15
# 0.7.1
26

37
* Automatically generate ID for ScreenViews (#55)

README.md

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

5151
```yml
5252
dependencies:
53-
snowplow_tracker: ^0.7.1
53+
snowplow_tracker: ^0.8.0
5454
```
5555
5656
Import the package into your Dart code:

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@ android {
5151

5252
dependencies {
5353
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
54-
implementation "com.snowplowanalytics:snowplow-android-tracker:6.0.+"
54+
implementation "com.snowplowanalytics:snowplow-android-tracker:6.2.+"
5555
}
58.4 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)