From 8a57ad9574d85bd818eaedfc8049fdcb16795f31 Mon Sep 17 00:00:00 2001 From: Artur Moczulski Date: Mon, 6 May 2019 13:31:11 +0200 Subject: [PATCH] chore(version): release v1.8.1 --- 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 c0de41b2..eb413099 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.8.0"; + const VERSION = "1.8.1"; public static function defaultNotifier() { diff --git a/tests/NotifierTest.php b/tests/NotifierTest.php index a47682db..1405358e 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.8.0"}', $encoded); + $this->assertEquals('{"name":"rollbar-php","version":"1.8.1"}', $encoded); } }