Skip to content

Commit da40186

Browse files
authored
Merge pull request #1228 from libcpr/feature/1.12.x_release_docs
1.12.0 Release Update
2 parents bb8fbf7 + b915327 commit da40186

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.15)
2-
project(cpr VERSION 1.11.2 LANGUAGES CXX)
2+
project(cpr VERSION 1.12.0 LANGUAGES CXX)
33

44
math(EXPR cpr_VERSION_NUM "${cpr_VERSION_MAJOR} * 0x10000 + ${cpr_VERSION_MINOR} * 0x100 + ${cpr_VERSION_PATCH}" OUTPUT_FORMAT HEXADECIMAL)
55
configure_file("${cpr_SOURCE_DIR}/cmake/cprver.h.in" "${cpr_BINARY_DIR}/cpr_generated_includes/cpr/cprver.h")

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
* For quick help, and discussion libcpr also offers a [gitter](https://gitter.im/libcpr/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link) chat.
1111

1212
## Supported Releases
13-
| Release | Min. C++ Standard | Status | Notes |
14-
|----------|-------------------|--------|-------|
15-
| master | `cpp17` | ![alt text][preview] | |
16-
| 1.11.x | `cpp17` | ![alt text][supported] | |
17-
| 1.10.x | `cpp17` | ![alt text][unsupported] | |
18-
| <= 1.9.x | `cpp11` | ![alt text][unsupported] | |
13+
| Release | Min. C++ Standard | Status | Notes |
14+
|---------------------------|-------------------|--------------------------|-------|
15+
| master | `cpp17` | ![alt text][preview] | |
16+
| 1.12.x | `cpp17` | ![alt text][supported] | |
17+
| 1.10.x - 1.11.x | `cpp17` | ![alt text][unsupported] | |
18+
| <= 1.9.x | `cpp11` | ![alt text][unsupported] | |
1919

2020
[unsupported]: https://img.shields.io/badge/-unsupported-red "unsupported"
2121
[supported]: https://img.shields.io/badge/-supported-green "supported"
@@ -93,7 +93,7 @@ Add the following to your `CMakeLists.txt`.
9393
```cmake
9494
include(FetchContent)
9595
FetchContent_Declare(cpr GIT_REPOSITORY https://github.com/libcpr/cpr.git
96-
GIT_TAG dd967cb48ea6bcbad9f1da5ada0db8ac0d532c06) # Replace with your desired git commit from: https://github.com/libcpr/cpr/releases
96+
GIT_TAG 1.12.0) # Replace with your desired git commit from: https://github.com/libcpr/cpr/releases
9797
FetchContent_MakeAvailable(cpr)
9898
```
9999

0 commit comments

Comments
 (0)