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 Dec 24, 2019
1 parent d2f9610 commit 1f9e892
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ deploy:
provider: script
script: "./.travis/deploy.sh $TRAVIS_TAG"
on:
condition: '"${TRAVIS_JDK_VERSION}" == "openjdk8"'
tags: true
env:
global:
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Java 0.9.0 (2019-12-24)
-----------------------
Bump OkHttp to OkHttp3 version 4 (close #175)
Add STM to outbound events (close #169)
Add support for attaching true timestamp to events (close #178)
Update all non-static Loggers to static (close #213)
Fix events sent by example simple-console (close #221)
Alter logging for invalid keys only when adding to TrackerPayload (close #186)
Fix Peru version so vagrant up succeeds (close #216)
Fix Javadoc generation warnings (close #219)

Java 0.8.4 (2019-01-09)
-----------------------
Add deployment to build process (close #183)
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ wrapper.gradleVersion = '5.0.0'

group = 'com.snowplowanalytics'
archivesBaseName = 'snowplow-java-tracker'
version = '0.8.4'
version = '0.9.0'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'

Expand Down Expand Up @@ -106,7 +106,7 @@ task generateSources {
srcFile.parentFile.mkdirs()
srcFile.write(
"""/*
* Copyright (c) 2014-2018 Snowplow Analytics Ltd. All rights reserved.
* Copyright (c) 2014-2019 Snowplow Analytics Ltd. All rights reserved.
*
* This program is licensed to you under the Apache License Version 2.0,
* and you may not use this file except in compliance with the Apache License Version 2.0.
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-console/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repositories {

dependencies {
compile 'com.google.code.gson:gson:2.8+'
compile 'com.snowplowanalytics:snowplow-java-tracker:0.8.4'
compile 'com.snowplowanalytics:snowplow-java-tracker:0.9.0'
compile 'com.squareup.okhttp3:okhttp:4.2.2'
compile 'org.slf4j:slf4j-api:1.7.7'
compile 'org.slf4j:slf4j-simple:1.7.7'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ public void testTrackTimingWithSubject() {
@Test
public void testGetTrackerVersion() throws Exception {
Tracker tracker = new Tracker.TrackerBuilder(emitter, "namespace", "an-app-id").build();
assertEquals("java-0.8.4", tracker.getTrackerVersion());
assertEquals("java-0.9.0", tracker.getTrackerVersion());
}

@Test
Expand Down

0 comments on commit 1f9e892

Please sign in to comment.