Skip to content

Commit

Permalink
Merge pull request #200 from mrtazz/release/0.5.3
Browse files Browse the repository at this point in the history
bump to version 0.5.3
  • Loading branch information
mrtazz authored Jan 2, 2025
2 parents fdf722b + e764538 commit 6eaa5d9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## v0.5.3 (2nd January 2025)
- add unit test actions workflow (mrtazz)
- Fix missing cstdint include (williamspatrick)
- init Connection::curlErrorBuf[] at compile (montdidier)
- Added Mingw Instructions (CypherpunkSamurai)
- [docs] use correct json mime type in example (aknoerig)
- Allow SSL peer verification to be disabled. (edwinpjacques)
- write callback and termination API (edwinpjacques)
- These two lines allow the scope of the property <target> for the public (Vi1i)
- User/shawkins/improve curl errors (Spencatro)
- Add vcpkg installation instructions (PhoebeHui)
- update linux package builds (mrtazz)

## v0.5.2 (12th February 2020)
- add a pkg-config setup
- Use the standard CMake-flag BUILD_SHARED_LIBS. (tastytea)
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cmake_minimum_required(VERSION 3.12.0)

project(restclient-cpp
VERSION 0.5.2
VERSION 0.5.3
DESCRIPTION "REST client for C++"
HOMEPAGE_URL "http://code.mrtazz.com/restclient-cpp"
)
Expand Down Expand Up @@ -63,7 +63,7 @@ list(APPEND restclient-cpp_PUBLIC_HEADERS
set_property(TARGET restclient-cpp PROPERTY
PUBLIC_HEADER ${restclient-cpp_PUBLIC_HEADERS})
target_include_directories(restclient-cpp
PRIVATE include
PRIVATE include
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/include>
)
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ clean-docker-services:
docker rm --force restclient-cpp-httpbin 2>/dev/null || true
docker rm --force restclient-cpp-squid 2>/dev/null || true

ci: lint test valgrind
ci: test valgrind

clean-local:
find . -name "*.gcda" -print0 | xargs -0 rm
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AC_PREREQ([2.52])
AC_INIT([restclient-cpp], [0.5.2], [[email protected]])
AC_INIT([restclient-cpp], [0.5.3], [[email protected]])
AM_INIT_AUTOMAKE([foreign subdir-objects])
LT_INIT
AC_CONFIG_HEADERS([config.h])
Expand Down

0 comments on commit 6eaa5d9

Please sign in to comment.