diff options
author | Rolf Timmermans <rolftimmermans@voormedia.com> | 2017-07-19 13:44:58 +0200 |
---|---|---|
committer | Rolf Timmermans <rolftimmermans@voormedia.com> | 2017-07-19 13:44:58 +0200 |
commit | d68a783dcad1f3561f8a79e07ecc47a97f67c5d2 (patch) | |
tree | 9fe9cb0875fe8dfec7c3fb5b5725f90355eb6324 | |
parent | 2ee07c4a2163005abf764ffd9080a42b3b9ef14f (diff) | |
download | tinify-php-d68a783dcad1f3561f8a79e07ecc47a97f67c5d2.zip tinify-php-d68a783dcad1f3561f8a79e07ecc47a97f67c5d2.tar.gz tinify-php-d68a783dcad1f3561f8a79e07ecc47a97f67c5d2.tar.bz2 |
Changes for 1.5.2.
-rw-r--r-- | CHANGES.md | 3 | ||||
-rw-r--r-- | lib/Tinify.php | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +## 1.5.2 +* Fail early if version of curl/openssl is too old. + ## 1.5.1 * Expose status of exceptions. diff --git a/lib/Tinify.php b/lib/Tinify.php index 183afdc..8d44685 100644 --- a/lib/Tinify.php +++ b/lib/Tinify.php @@ -2,7 +2,7 @@ namespace Tinify; -const VERSION = "1.5.1"; +const VERSION = "1.5.2"; class Tinify { private static $key = NULL; |