Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ C++17 and meson are required.
Download the latest source package from the [GitHub Releases](https://github.com/serpapi/serpapi-cpp/releases) page, then run:

```bash
tar xf serpapi-0.3.0.tar.xz
cd serpapi-0.3.0
tar xf serpapi-0.4.0.tar.xz
cd serpapi-0.4.0
meson setup build
meson compile -C build
sudo meson install -C build
Expand Down Expand Up @@ -194,6 +194,7 @@ C++ versions validated by Github Actions:
- C++20

## Change logs
* [2026-06-08] 0.4.0 Add unit tests and improve error handling.
* [2026-02-12] 0.3.0 Refactor and cleanup.
* [2026-01-06] 0.2.0 Release package with meson build system.
* [2023-02-20] 0.1.0 Full API support
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('serpapi', 'cpp',
version : '0.3.0',
version : '0.4.0',
default_options : ['warning_level=3', 'cpp_std=c++17'])

compiler = meson.get_compiler('cpp')
Expand Down
2 changes: 1 addition & 1 deletion src/serpapi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace serpapi {

const static std::string HOST = "https://serpapi.com";
const static std::string NAME = "serpapi-cpp";
const static std::string VERSION = "0.3.0";
const static std::string VERSION = "0.4.0";

static std::once_flag curl_init_flag;

Expand Down
Loading