Skip to content

Commit

Permalink
Release v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
terrakuh committed Nov 27, 2022
1 parent 42cd9d3 commit dc8baa4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

<h2><a href="https://github.com/terrakuh/curlio/compare/v0.3.3..v0.4">v0.4</a> - 2022-11-27</h2>

### Changed
- Implementation

<h2><a href="https://github.com/terrakuh/curlio/compare/v0.3.2..v0.3.3">v0.3.3</a> - 2022-06-10</h2>

### Added
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.16)

project(
curlio
VERSION 0.3.3
VERSION 0.4.0
DESCRIPTION "The simple glue for cURL and Boost.ASIO"
HOMEPAGE_URL "https://github.com/terrakuh/curlio"
LANGUAGES CXX
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ auto session = curlio::make_session<boost::asio::any_io_executor>(service.get_ex

// Create request and set options.
auto request = curlio::make_request(session);
curl_easy_setopt(request->native_handle(), CURLOPT_URL, "http://example.com");
curl_easy_setopt(request->native_handle(), CURLOPT_USERAGENT, "cURLio");
request->set_option<CURLOPT_URL>("http://example.com");
request->set_option<CURLOPT_USERAGENT>("cURLio");

// Launches the request which will then run in the background.
auto response = co_await session->async_start(request, asio::use_awaitable);
Expand Down Expand Up @@ -52,7 +52,7 @@ cmake --install curlio/build
And then in your `CMakeLists.txt`:

```cmake
find_package(curlio 0.3.3 REQUIRED)
find_package(curlio 0.4 REQUIRED)
target_link_libraries(my-target PRIVATE curlio::curlio)
```

Expand Down

0 comments on commit dc8baa4

Please sign in to comment.