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

Commit f95cdbb

Browse files
Releasing version 1.2.1
1 parent 76b3a40 commit f95cdbb

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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.2.1] - 2020-03-31
6+
### Fixed:
7+
- Standardized polling retry behavior. It now simply waits until the next poll interval.
8+
- Standardized event delivery retry behavior. It now retries delivery after one second, a single time.
9+
- Standardized streaming retry behavior. It now correctly follows exponential back-off, changed how status codes are interpreted, and resets back-off after 60 seconds of being successfully connected.
10+
511
## [1.2.0] - 2020-01-22
612
### Added:
713
- Added support for utilizing external feature stores. See the new `launchdarkly/store.h` file for details on implementing a store. You can configure usage of a specific store with `LDConfigSetFeatureStoreBackend`.

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.2.0"
11+
#define LD_SDK_VERSION "1.2.1"
1212

1313
#ifdef __cplusplus
1414
extern "C" {

0 commit comments

Comments
 (0)