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 10, 2020
1 parent d3e6c3f commit f07d7f5
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 16 deletions.
46 changes: 35 additions & 11 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,19 +1,43 @@
Java 0.10.0 (2020-06-10)
-----------------------
Add snyk monitor to Github Actions (#253)
Update copyright years (#227)
Update README to point to docs.snowplowanalytics.com (#251)
Switch to GitHub Actions for build and release (#231)
Switch junit to native Gradle support (#240)
Bump org.apache.httpcomponents:httpasyncclient to 4.1.4 (#249)
Bump org.apache.httpcomponents:httpclient to 4.5.12 (#248)
Bump mockito-core to 3.3.3 (#247)
Bump slf4j-api to 1.7.30 (#246)
Bump commons-net to 3.6 (#245)
Bump commons-codec to 1.14 (#241)
Bump mockwebserver to 4.7.2 (#239)
Bump guava to 29.0 (#238)
Bump wiremock to 2.26.3 (#237)
Bump jackson-databind to 2.11.0 (#235)
Upgrade to Gradle 6 (#236)
Add default HttpClientAdapter so users do not have to create one (#165)
Support for creating TrackerPayload asynchronously (#222)
Add POM information to Maven Publishing section in build.gradle (#234)
Remove use of deprecated OkHttp methods (#228)
Switch build.gradle to use https://repo.spring.io/plugins-release (#223)

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)
Bump OkHttp to OkHttp3 version 4 (#175)
Add STM to outbound events (#169)
Add support for attaching true timestamp to events (#178)
Update all non-static Loggers to static (#213)
Fix events sent by example simple-console (#221)
Alter logging for invalid keys only when adding to TrackerPayload (#186)
Fix Peru version so vagrant up succeeds (#216)
Fix Javadoc generation warnings (#219)

Java 0.8.4 (2019-01-09)
-----------------------
Add deployment to build process (close #183)
Add sonatype credentials to .travis.yml (closes #209)
Add Bintray credentials to .travis.yml (closes #208)
Add deployment to build process (#183)
Add sonatype credentials to .travis.yml (#209)
Add Bintray credentials to .travis.yml (#208)

Java 0.8.3 (2019-01-02)
-----------------------
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.9.0'
version = '0.10.0'
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.9.0'
implementation 'com.snowplowanalytics:snowplow-java-tracker:0.10.0'

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

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.9.0", tracker.getTrackerVersion());
assertEquals("java-0.10.0", tracker.getTrackerVersion());
}

@Test
Expand Down

0 comments on commit f07d7f5

Please sign in to comment.