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.2"
".": "2.0.3"
}
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.3](https://github.com/launchdarkly/lua-server-sdk/compare/v2.0.2...v2.0.3) (2024-02-06)


### Bug Fixes

* add hello-haproxy ([#69](https://github.com/launchdarkly/lua-server-sdk/issues/69)) ([72481e3](https://github.com/launchdarkly/lua-server-sdk/commit/72481e34d7bf0f52d4372f8d13d5e6fa8a034a30))

## [2.0.2](https://github.com/launchdarkly/lua-server-sdk/compare/v2.0.1...v2.0.2) (2024-01-09)


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.2" /* {x-release-please-version} */
#define SDKVersion "2.0.3" /* {x-release-please-version} */

static LDValue
LuaValueToJSON(lua_State *const l, const int i);
Expand Down
2 changes: 1 addition & 1 deletion scripts/compile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

set -e

version="2.0.2" # {x-release-please-version }
version="2.0.3" # {x-release-please-version }

luarocks make launchdarkly-server-sdk-$version-0.rockspec LD_DIR=./cpp-sdks/build/INSTALL
luarocks make launchdarkly-server-sdk-redis-$version-0.rockspec LDREDIS_DIR=./cpp-sdks/build/INSTALL
2 changes: 1 addition & 1 deletion scripts/update-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ git_username=$3
git_email=$4

if [ "$input_version" == "auto" ]; then
input_version="2.0.2" # { x-release-please-version }
input_version="2.0.3" # { x-release-please-version }
fi

autocommit=''
Expand Down