Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
mhadam committed May 10, 2018
1 parent 2887a93 commit 9463d6b
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
Version 0.7.0 (2018-05-10)
--------------------------
Make tracker.setLifecycleHandler take a Context instead of an Activity (#224)
Add a method to start a new session (#226)
Add ability to specify TLS protocols to use for emitting events (#245)
Add identifyUser as alias for setUserId (#254)
Add trackConsentGranted and trackConsentWithdrawn methods (#255)
Update README markdown in accordance with CommonMark (#256)
Reset firstId even if app is in the foreground (#257)
Fix outdated and broken Travis configuration (#258)
Unregister LifecycleHandler callbacks on activity destruction (#259)
Add the ability to suspend and resume a LifecycleHandler (#261)
Raise minimum supported Android API to level 14 (#262)
Add support for custom contexts to LifecycleHandler (#263)

Version 0.6.2 (2017-01-13)
--------------------------
Ensure we do not pass invalid information to application_error event (#237)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ In the Ngrok interface take note of the `tunnel` URL, this is what you will use

## Find out more

| Technical Docs | Setup Guide | Roadmap | Contributing |
|---------------------------------|---------------------------|-------------------------|-----------------------------------|
| Technical Docs | Setup Guide | Roadmap | Contributing |
|:-------------------------------|:-------------------------|:-----------------------|:---------------------------------|
| ![i1][techdocs-image] | ![i2][setup-image] | ![i3][roadmap-image] | ![i4][contributing-image] |
| **[Technical Docs][techdocs]** | **[Setup Guide][setup]** | **[Roadmap][roadmap]** | **[Contributing][contributing]** |

## Copyright and license

The Snowplow Android Tracker is copyright 2015-2017 Snowplow Analytics Ltd.
The Snowplow Android Tracker is copyright 2015-2018 Snowplow Analytics Ltd.

Licensed under the **[Apache License, Version 2.0] [license]** (the "License");
Licensed under the **[Apache License, Version 2.0][license]** (the "License");
you may not use this software except in compliance with the License.

Unless required by applicable law or agreed to in writing, software
Expand Down Expand Up @@ -92,7 +92,7 @@ limitations under the License.
[travis]: https://travis-ci.org/snowplow/snowplow-android-tracker
[travis-image]: https://travis-ci.org/snowplow/snowplow-android-tracker.svg?branch=master

[release-image]: http://img.shields.io/badge/release-0.6.2-blue.svg?style=flat
[release-image]: http://img.shields.io/badge/release-0.7.0-blue.svg?style=flat
[releases]: https://github.com/snowplow/snowplow-android-tracker/releases

[license-image]: http://img.shields.io/badge/license-Apache--2-blue.svg?style=flat
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.2
0.7.0
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ buildscript {

subprojects {
group = 'com.snowplowanalytics'
version = '0.6.2'
version = '0.7.0'
repositories {
maven {
url "http://maven.snplow.com/releases"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public void testSetValues() {
assertEquals(false, tracker.getBase64Encoded());
assertNotNull(tracker.getEmitter());
assertNotNull(tracker.getSubject());
assertEquals("andr-0.6.2", tracker.getTrackerVersion());
assertEquals("andr-0.7.0", tracker.getTrackerVersion());
assertEquals(LogLevel.VERBOSE, tracker.getLogLevel());
assertEquals(2, tracker.getThreadCount());
assertEquals(false, tracker.getApplicationCrash());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public void checkGetRequest(LinkedList<RecordedRequest> requests) throws Excepti
assertEquals("mob", query.get("p"));
assertEquals("myAppId", query.get("aid"));
assertEquals("myNamespace", query.get("tna"));
assertEquals("andr-0.6.2", query.get("tv"));
assertEquals("andr-0.7.0", query.get("tv"));
assertEquals("English", query.get("lang"));
assertTrue(query.has("dtm"));
assertTrue(query.has("stm"));
Expand Down Expand Up @@ -248,7 +248,7 @@ public void checkPostRequest(LinkedList<RecordedRequest> requests) throws Except
assertEquals("mob", json.getString("p"));
assertEquals("myAppId", json.getString("aid"));
assertEquals("myNamespace", json.getString("tna"));
assertEquals("andr-0.6.2", json.getString("tv"));
assertEquals("andr-0.7.0", json.getString("tv"));
assertEquals("English", json.getString("lang"));
assertTrue(json.has("dtm"));
assertTrue(json.has("stm"));
Expand Down

0 comments on commit 9463d6b

Please sign in to comment.