Skip to content

Commit

Permalink
Prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Boocock authored and paulboocock committed Jun 11, 2020
1 parent 832b2d0 commit 65d3a0c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Java 0.10.1 (2020-06-11)
-----------------------
Publish Gradle module file with bintrayUpload (#255)
Update snyk integration to include project name in GitHub action (#256)

Java 0.10.0 (2020-06-10)
-----------------------
Add snyk monitor to Github Actions (#253)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ wrapper.gradleVersion = '6.5.0'

group = 'com.snowplowanalytics'
archivesBaseName = 'snowplow-java-tracker'
version = '0.10.0'
version = '0.10.1'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

Expand Down
6 changes: 3 additions & 3 deletions examples/simple-console/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ test {
}

dependencies {
implementation 'com.snowplowanalytics:snowplow-java-tracker:0.10.0'
implementation 'com.snowplowanalytics:snowplow-java-tracker:0.10.1'

implementation ('com.snowplowanalytics:snowplow-java-tracker:0.10.0') {
implementation ('com.snowplowanalytics:snowplow-java-tracker:0.10.1') {
capabilities {
requireCapability 'com.snowplowanalytics:snowplow-java-tracker-okhttp-support:0.10.0'
requireCapability 'com.snowplowanalytics:snowplow-java-tracker-okhttp-support:0.10.1'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ public void testTrackTimingWithSubject() {
@Test
public void testGetTrackerVersion() throws Exception {
Tracker tracker = new Tracker.TrackerBuilder(emitter, "namespace", "an-app-id").build();
assertEquals("java-0.10.0", tracker.getTrackerVersion());
assertEquals("java-0.10.1", tracker.getTrackerVersion());
}

@Test
Expand Down

0 comments on commit 65d3a0c

Please sign in to comment.