blob: 42fb35a32ca55d18d68e14c525b210523576f1a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
From 95f4deb816266e4ffac55beeb138caa4d42691fd Mon Sep 17 00:00:00 2001
From: Shawn Iwinski <siwinski@redhat.com>
Date: Fri, 23 Jun 2017 18:01:13 -0400
Subject: [PATCH] [ClientInterface] Fix VERSION for 6.3.0 release
---
src/ClientInterface.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/ClientInterface.php b/src/ClientInterface.php
index 5a67b66bf..2050309de 100644
--- a/src/ClientInterface.php
+++ b/src/ClientInterface.php
@@ -12,7 +12,7 @@
*/
interface ClientInterface
{
- const VERSION = '6.2.1';
+ const VERSION = '6.3.0';
/**
* Send an HTTP request.
|