From 149590adc3bd5ed1188c48f8159f257aa1bf2d19 Mon Sep 17 00:00:00 2001 From: Artur Moczulski Date: Thu, 6 Sep 2018 21:34:17 +0000 Subject: [PATCH] Bump version to v1.6.3 --- 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 39560794..a6c4d458 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.6.2"; + const VERSION = "1.6.3"; public static function defaultNotifier() { diff --git a/tests/NotifierTest.php b/tests/NotifierTest.php index ea5328d5..d0192699 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.6.2"}', $encoded); + $this->assertEquals('{"name":"rollbar-php","version":"1.6.3"}', $encoded); } }