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

Commit a3cf131

Browse files
Releasing version 2.3.1
1 parent 2009433 commit a3cf131

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
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+
## [2.3.1] - 2021-05-12
6+
### Changed:
7+
- Now building with -Werror on Linux and macOS
8+
- Refactored to reduce code duplication between c-client and c-server
9+
- Improved c89 compatibility
10+
- Added clang-format
11+
12+
### Fixed:
13+
- A race condition inside the in memory cache when utilizing an external data store. Thanks @lcapaldo
14+
- An instance of using the incorrect enum `LD_ERROR` instead of `LD_LOG_ERROR` with `LD_LOG`
15+
- Resolved many build warnings (that do not impact semantics)
16+
517
## [2.3.0] - 2021-01-28
618
### Added:
719
- Added the `LDClientAlias` function. This can be used to associate two user objects for analytics purposes with an alias event.

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 "2.3.0"
11+
#define LD_SDK_VERSION "2.3.1"
1212

1313
#ifdef __cplusplus
1414
extern "C" {

0 commit comments

Comments
 (0)