From 52ff4b23adffa8f320d47fff85c99cbd227f5782 Mon Sep 17 00:00:00 2001 From: Victor Benarbia Date: Sun, 16 Aug 2026 06:58:39 -0500 Subject: [PATCH] Bump version to 1.1.0 New features since 1.0.0, all backwards compatible: connection reuse, default search parameters in the constructor, associative array decoding, API key masking in debug output and Markdown output. A minor bump under semver. Client::VERSION also feeds the `source` query parameter, so requests now report `serpapi-php:1.1.0` and the new release is distinguishable in usage statistics. Co-Authored-By: Claude Opus 5 --- README.md | 1 + README.md.erb | 1 + src/Client.php | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) 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;