From 889501d445e6096c037f7098e2a7121657290de8 Mon Sep 17 00:00:00 2001 From: Artur Moczulski Date: Sat, 4 May 2019 01:11:05 +0200 Subject: [PATCH] chore(version): release v1.8.0 --- src/Payload/Notifier.php | 2 +- tests/NotifierTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Payload/Notifier.php b/src/Payload/Notifier.php index 9e90457f..c0de41b2 100644 --- a/src/Payload/Notifier.php +++ b/src/Payload/Notifier.php @@ -3,7 +3,7 @@ class Notifier implements \Serializable { const NAME = "rollbar-php"; - const VERSION = "1.7.5"; + const VERSION = "1.8.0"; public static function defaultNotifier() { diff --git a/tests/NotifierTest.php b/tests/NotifierTest.php index 27297bb8..a47682db 100644 --- a/tests/NotifierTest.php +++ b/tests/NotifierTest.php @@ -29,6 +29,6 @@ public function testEncode() { $notifier = Notifier::defaultNotifier(); $encoded = json_encode($notifier->serialize()); - $this->assertEquals('{"name":"rollbar-php","version":"1.7.5"}', $encoded); + $this->assertEquals('{"name":"rollbar-php","version":"1.8.0"}', $encoded); } }