Skip to content

Commit

Permalink
Prepared for release
Browse files Browse the repository at this point in the history
  • Loading branch information
adatzer committed Feb 17, 2021
1 parent 8be2e95 commit 6fe53ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Version 0.3.1 (2021-02-17)
--------------------------
Update copyright notices to 2021 (#92)
Fix expected hash in Dockerfile (#90)
Migrate to GitHub actions (#88)
Upgrade ramsey/uuid version constraint to allow v3 or v4 (#87)

Version 0.3.0 (2019-06-06)
--------------------------
Fix coverall setup (#79)
Expand Down
4 changes: 2 additions & 2 deletions src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class Constants {
* - SSL: the default for whether or not to use SSL Encryption
* - Type: the default for what type of request the emitter will be making (POST or GET)
*/
const TRACKER_VERSION = "php-0.3.0";
const TRACKER_VERSION = "php-0.3.1";
const DEFAULT_BASE_64 = true;
const DEBUG_LOG_FILES = true;
const CONTEXT_SCHEMA = "iglu:com.snowplowanalytics.snowplow/contexts/jsonschema/1-0-1";
Expand Down Expand Up @@ -79,7 +79,7 @@ class Constants {
/**
* Settings for the Asynchronous Rolling Curl Emitter
* - Buffer: the amount of events that will occur before sending begins
* - Amount: the amount of times we need to reach the buffer limit
* - Amount: the amount of times we need to reach the buffer limit
* before we initiate sending
* - Window: the amount of concurrent curl requests being made
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/tests/ClassInitTests/TrackerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function testTrackerInit() {
// Asserts
$this->assertEquals($this->s1, $tracker->returnSubject());
$this->assertEquals(false, $tracker->returnEncodeBase64());
$this->assertEquals(array("tv" => "php-0.3.0", "tna" => "namespace", "aid" => "app_id"), $tracker->returnStdNvPairs());
$this->assertEquals(array("tv" => "php-0.3.1", "tna" => "namespace", "aid" => "app_id"), $tracker->returnStdNvPairs());
$tracker->turnOffDebug(true);
}

Expand Down

0 comments on commit 6fe53ba

Please sign in to comment.