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
4 changes: 2 additions & 2 deletions .github/actions/ci/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ inputs:
lua-server-version:
description: 'Version of the Lua Server-side SDK to use for building and testing.'
required: false
default: "2.0.0" # {x-release-please-version}
default: "2.0.1" # {x-release-please-version}
lua-server-redis-version:
description: 'Version of the Lua Server-side SDK with Redis to use for building and testing.'
required: false
default: "2.0.0" # {x-release-please-version}
default: "2.0.1" # {x-release-please-version}
cpp-sdk-version:
description: 'Version of the C++ Server-side SDK to use for building and testing.'
required: false
Expand Down
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
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