Skip to content

Commit c4683b2

Browse files
committed
Merge branch 'mrtazz-release-0-5-2'
2 parents 7583e4a + 996f6bf commit c4683b2

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

CHANGELOG.md

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

3+
## v0.5.2 (12th February 2020)
4+
- add a pkg-config setup
5+
- Use the standard CMake-flag BUILD_SHARED_LIBS. (tastytea)
6+
- Add CURL and Threads as dependency in CMake config. (tastytea)
7+
- Replace hardcoded installation directories with GNUInstallDirs. (tastytea)
8+
- Set minimum CMake version to 3.12.0 (tastytea)
9+
- Added default compile type to CMakeLists.txt (Jorge Marizan)
10+
- Added configurable compile type to CMakeLists.txt (Jorge Marizan)
11+
- use lambda over ptr_fun (Cynthia Coan)
12+
- mac os x uses glibtoolize not libtoolize (Cynthia Coan)
13+
- Use std::make_unique when C++14 is available (Heikki Hellgren)
14+
- fix git version problems during yocto build (Giuseppe Ursino)
15+
- fix autogen to work with yocto (Giuseppe Ursino)
16+
- fix relative path issues (Giuseppe Ursino)
17+
- Added support for Unix sockets. (Dennis Jenkins)
18+
- update CI dist to xenial (Daniel Schauenberg)
19+
320
## v0.5.1 (6th May 2019)
421
- add initial cmake build
522
- switch httpbin tests over to https

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.1
5+
VERSION 0.5.2
66
DESCRIPTION "REST client for C++"
77
HOMEPAGE_URL "http://code.mrtazz.com/restclient-cpp"
88
)
@@ -115,7 +115,7 @@ configure_package_config_file(
115115
LIB_INSTALL_DIR
116116
DATA_INSTALL_DIR
117117
)
118-
118+
119119
write_basic_package_version_file(
120120
"${CMAKE_CURRENT_BINARY_DIR}/restclient-cppConfigVersion.cmake"
121121
COMPATIBILITY

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.1], [[email protected]])
2+
AC_INIT([restclient-cpp], [0.5.2], [[email protected]])
33
AM_INIT_AUTOMAKE([foreign subdir-objects])
44
LT_INIT
55
AC_CONFIG_HEADERS([config.h])

0 commit comments

Comments
 (0)