Skip to content

Commit 7e16e04

Browse files
committed
fix release
1 parent c4917d9 commit 7e16e04

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

CHANGELOG.md

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

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

5+
## [1.0.0-beta.3] - 2020-07-20
6+
7+
### Added:
8+
- Added support for Lua `5.2` and Lua `5.3`.
9+
- Added `featureStoreBackend` option to configuration object.
10+
- Added `launchdarkly_server_sdk_redis` module to support Redis as an external feature store.
11+
- Added `registerLogger` which allows configuration of SDK logging capabilities.
12+
13+
### Changed:
14+
- The SDK is now implemented as a compiled C module instead of directly in Lua.
15+
- The SDK is now imported as `launchdarkly_server_sdk`, instead of `launchdarkly-server-sdk.lua`.
16+
- The SDK no longer depends on the Lua `cjson`, or Lua `ffi` libraries.
17+
- All methods are no longer closures. Use `client:aFunction`, instead of `client.aFunction`.
18+
519
## [1.0.0-beta.2] - 2020-05-12
620

721
### Changed:

launchdarkly-server-sdk.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Server-side SDK for LaunchDarkly.
1111

1212
#include <launchdarkly/api.h>
1313

14-
#define SDKVersion "1.0.0-beta.2"
14+
#define SDKVersion "1.0.0-beta.3"
1515

1616
static struct LDJSON *
1717
LuaValueToJSON(lua_State *const l, const int i);

0 commit comments

Comments
 (0)