Skip to content
This repository was archived by the owner on Dec 6, 2024. It is now read-only.

Commit 2397e56

Browse files
authored
1.0.1 (#9)
1 parent 347f774 commit 2397e56

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to the LaunchDarkly C server-side SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [1.0.1] - 2019-07-11
6+
### Fixed
7+
- Updated CMAKE header search to include `/usr/local/include` for OSX Mojave
8+
59
## [1.0.0] - 2019-07-05
610
### Added
711
- LRU caching to prevent users being indexed multiple times

CMakeLists.txt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ else()
1717
set(LD_LIBRARIES pthread m)
1818
endif(MSVC)
1919

20-
include_directories("src" "include" "third-party/include" ${CURL_INCLUDE_DIR} ${PCRE_INCLUDE_DIR})
20+
set(LD_INCLUDE_PATHS "src" "include" "third-party/include" ${CURL_INCLUDE_DIR} ${PCRE_INCLUDE_DIR})
21+
22+
if(APPLE)
23+
set(LD_INCLUDE_PATHS ${LD_INCLUDE_PATHS} "/usr/local/include")
24+
endif(APPLE)
25+
26+
include_directories(${LD_INCLUDE_PATHS})
2127
file(GLOB SOURCES "src/*" "third-party/src/*")
2228

2329
set(LD_LIBRARIES ${LD_LIBRARIES} ${CURL_LIBRARIES} ${PCRE_LIBRARIES})

include/launchdarkly/api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/** @brief The current SDK version string. This value adheres to semantic
99
* versioning and is included in the HTTP user agent sent to LaunchDarkly.
1010
*/
11-
#define LD_SDK_VERSION "1.0.0"
11+
#define LD_SDK_VERSION "1.0.1"
1212

1313
#ifdef __cplusplus
1414
extern "C" {

0 commit comments

Comments
 (0)