Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "2.0.0"
".": "2.0.1"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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).

## [2.0.1](https://github.com/launchdarkly/lua-server-sdk/compare/v2.0.0...v2.0.1) (2024-01-08)


### Bug Fixes

* add hello-lua-server example ([#41](https://github.com/launchdarkly/lua-server-sdk/issues/41)) ([462a3f3](https://github.com/launchdarkly/lua-server-sdk/commit/462a3f32f4e9d785fb1656cf6274513ca246740c))

## [2.0.0](https://github.com/launchdarkly/lua-server-sdk/compare/1.2.2...v2.0.0) (2023-12-28)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,11 @@ To compile the LuaRock modules:
3. Run `luarocks make` (replace the version number as necessary):
```bash
# Base SDK
luarocks make launchdarkly-server-sdk-2.0.0-0.rockspec \
luarocks make launchdarkly-server-sdk-..-0.rockspec \
LD_DIR=./path-to-installed-cpp-sdk

# SDK with Redis
luarocks make launchdarkly-server-sdk-redis-2.0.0-0.rockspec \
luarocks make launchdarkly-server-sdk-redis-..-0.rockspec \
LDREDIS_DIR=./path-to-installed-cpp-sdk
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package = "launchdarkly-server-sdk"

rockspec_format = "3.0"

version = "2.0.0-0"
version = "..-0"

description = {
summary = "LaunchDarkly Lua Server-Side SDK",
Expand All @@ -20,7 +20,7 @@ description = {

source = {
url = "git+https://github.com/launchdarkly/lua-server-sdk.git",
tag = "v2.0.0"
tag = "v.."
}

dependencies = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package = "launchdarkly-server-sdk-redis"

rockspec_format = "3.0"

version = "2.0.0-0"
version = "..-0"

description = {
summary = "LaunchDarkly Lua Server-Side SDK Redis Source",
Expand All @@ -19,7 +19,7 @@ description = {

source = {
url = "git+https://github.com/launchdarkly/lua-server-sdk.git",
tag = "v2.0.0"
tag = "v.."
}

dependencies = {
Expand Down
2 changes: 1 addition & 1 deletion launchdarkly-server-sdk.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Server-side SDK for LaunchDarkly.
#define DEBUG_PRINT(fmt, ...)
#endif

#define SDKVersion "2.0.0" /* {x-release-please-version} */
#define SDKVersion "2.0.1" /* {x-release-please-version} */

static LDValue
LuaValueToJSON(lua_State *const l, const int i);
Expand Down