Skip to content

Commit d1fc1da

Browse files
committed
Merge branch 'release/0.8.0' into develop
2 parents 49cd395 + 077c139 commit d1fc1da

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.2
1+
0.8.0

spec/Nats/ConnectionOptionsSpec.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function it_has_default_lang_value_as_php() {
3333
}
3434

3535
function it_has_default_version_value_as_null() {
36-
$this->getVersion()->shouldEqual("0.7.2");
36+
$this->getVersion()->shouldEqual("0.8.0");
3737
}
3838

3939
function it_has_default_verbose_value_as_null() {

src/Nats/ConnectionOptions.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class ConnectionOptions
4747
*
4848
* @var string
4949
*/
50-
private $version = "0.7.2";
50+
private $version = "0.8.0";
5151

5252
/**
5353
* If verbose mode is enabled.

test/ConnectionOptionsTest.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function testSettersAndGettersWithoutCredentials()
7474
public function testStringRepresentation()
7575
{
7676
$options = new ConnectionOptions();
77-
$this->assertEquals("{\"lang\":\"php\",\"version\":\"0.7.2\",\"verbose\":false,\"pedantic\":false}", $options->__toString());
77+
$this->assertEquals("{\"lang\":\"php\",\"version\":\"0.8.0\",\"verbose\":false,\"pedantic\":false}", $options->__toString());
7878
}
7979

8080
/**
@@ -87,6 +87,6 @@ public function testStringRepresentationWithCredentials()
8787
$options = new ConnectionOptions();
8888
$options->setUser("username");
8989
$options->setPass("password");
90-
$this->assertEquals("{\"lang\":\"php\",\"version\":\"0.7.2\",\"verbose\":false,\"pedantic\":false,\"user\":\"username\",\"pass\":\"password\"}", $options->__toString());
90+
$this->assertEquals("{\"lang\":\"php\",\"version\":\"0.8.0\",\"verbose\":false,\"pedantic\":false,\"user\":\"username\",\"pass\":\"password\"}", $options->__toString());
9191
}
9292
}

0 commit comments

Comments
 (0)