diff --git a/README.md b/README.md index 8d9dd04..8d21c07 100644 --- a/README.md +++ b/README.md @@ -536,6 +536,7 @@ Contributions are welcome. Feel free to submit a pull request! ## Change log + * 1.1 - Ruby client parity: connection reuse, default search parameters, associative array decoding, Markdown output * 1.0 - First stable version ## Conclusion diff --git a/README.md.erb b/README.md.erb index 834c3b5..75e43bb 100644 --- a/README.md.erb +++ b/README.md.erb @@ -312,6 +312,7 @@ Contributions are welcome. Feel free to submit a pull request! ## Change log + * 1.1 - Ruby client parity: connection reuse, default search parameters, associative array decoding, Markdown output * 1.0 - First stable version ## Conclusion diff --git a/src/Client.php b/src/Client.php index b33278e..023069f 100644 --- a/src/Client.php +++ b/src/Client.php @@ -3,7 +3,7 @@ namespace SerpApi; class Client { - const VERSION = '1.0.0'; + const VERSION = '1.1.0'; const BASE_URL = 'https://serpapi.com'; const DEFAULT_TIMEOUT = 120;