Skip to content

Commit

Permalink
Temp bump to rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
adatzer committed Feb 18, 2021
1 parent 6358258 commit 84959fc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Version 0.3.1 (2021-02-17)
--------------------------
Version 0.3.1-rc1 (2021-02-17)
------------------------------
Update copyright notices to 2021 (#92)
Fix expected hash in Dockerfile (#90)
Migrate to GitHub actions (#88)
Expand Down
2 changes: 1 addition & 1 deletion 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.1";
const TRACKER_VERSION = "php-0.3.1-rc1";
const DEFAULT_BASE_64 = true;
const DEBUG_LOG_FILES = true;
const CONTEXT_SCHEMA = "iglu:com.snowplowanalytics.snowplow/contexts/jsonschema/1-0-1";
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.1", "tna" => "namespace", "aid" => "app_id"), $tracker->returnStdNvPairs());
$this->assertEquals(array("tv" => "php-0.3.1-rc1", "tna" => "namespace", "aid" => "app_id"), $tracker->returnStdNvPairs());
$tracker->turnOffDebug(true);
}

Expand Down

0 comments on commit 84959fc

Please sign in to comment.