Skip to content

Commit 379c83d

Browse files
committed
bump to version 0.5.3
1 parent fdf722b commit 379c83d

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v0.5.3 (2nd January 2025)
4+
- add unit test actions workflow (mrtazz)
5+
- Fix missing cstdint include (williamspatrick)
6+
- init Connection::curlErrorBuf[] at compile (montdidier)
7+
- Added Mingw Instructions (CypherpunkSamurai)
8+
- [docs] use correct json mime type in example (aknoerig)
9+
- Allow SSL peer verification to be disabled. (edwinpjacques)
10+
- write callback and termination API (edwinpjacques)
11+
- These two lines allow the scope of the property <target> for the public (Vi1i)
12+
- User/shawkins/improve curl errors (Spencatro)
13+
- Add vcpkg installation instructions (PhoebeHui)
14+
- update linux package builds (mrtazz)
15+
316
## v0.5.2 (12th February 2020)
417
- add a pkg-config setup
518
- Use the standard CMake-flag BUILD_SHARED_LIBS. (tastytea)

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
cmake_minimum_required(VERSION 3.12.0)
33

44
project(restclient-cpp
5-
VERSION 0.5.2
5+
VERSION 0.5.3
66
DESCRIPTION "REST client for C++"
77
HOMEPAGE_URL "http://code.mrtazz.com/restclient-cpp"
88
)
@@ -63,7 +63,7 @@ list(APPEND restclient-cpp_PUBLIC_HEADERS
6363
set_property(TARGET restclient-cpp PROPERTY
6464
PUBLIC_HEADER ${restclient-cpp_PUBLIC_HEADERS})
6565
target_include_directories(restclient-cpp
66-
PRIVATE include
66+
PRIVATE include
6767
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
6868
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>
6969
)

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AC_PREREQ([2.52])
2-
AC_INIT([restclient-cpp], [0.5.2], [[email protected]])
2+
AC_INIT([restclient-cpp], [0.5.3], [[email protected]])
33
AM_INIT_AUTOMAKE([foreign subdir-objects])
44
LT_INIT
55
AC_CONFIG_HEADERS([config.h])

0 commit comments

Comments
 (0)