Skip to content
Merged
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.4"
".": "2.0.5"
}
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.5](https://github.com/launchdarkly/lua-server-sdk/compare/v2.0.4...v2.0.5) (2024-02-07)


### Bug Fixes

* publish step should take rockspec inputs ([#85](https://github.com/launchdarkly/lua-server-sdk/issues/85)) ([ea11770](https://github.com/launchdarkly/lua-server-sdk/commit/ea1177043953d2c38c95b3b46f659aedf2b69ff3))

## [2.0.4](https://github.com/launchdarkly/lua-server-sdk/compare/v2.0.3...v2.0.4) (2024-02-07)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ If you don't want to install from LuaRocks, it's possible to compile the modules

**Install the base SDK only**
```bash
luarocks make launchdarkly-server-sdk-2.0.4-0.rockspec \
luarocks make launchdarkly-server-sdk-2.0.5-0.rockspec \
LD_DIR=./path-to-installed-cpp-sdk
```
**Install the base SDK with Redis support**
```bash
luarocks make launchdarkly-server-sdk-redis-2.0.4-0.rockspec \
luarocks make launchdarkly-server-sdk-redis-2.0.5-0.rockspec \
LDREDIS_DIR=./path-to-cpp-sdk-with-redis-support-installation
```

Expand Down
2 changes: 1 addition & 1 deletion examples/hello-haproxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

# {{ x-release-please-start-version }}
ARG VERSION=2.0.4
ARG VERSION=2.0.5
# {{ x-release-please-end }}

RUN apt-get update && apt-get install -y \
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.4-0"
version = "2.0.5-0"

description = {
summary = "LaunchDarkly SDK for server-side applications.",
Expand All @@ -20,7 +20,7 @@ description = {

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

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.4-0"
version = "2.0.5-0"

description = {
summary = "Redis integration for LaunchDarkly Lua Server-side SDK.",
Expand All @@ -19,7 +19,7 @@ description = {

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

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.4" /* {x-release-please-version} */
#define SDKVersion "2.0.5" /* {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.4" # {x-release-please-version }
version="2.0.5" # {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.4" # { x-release-please-version }
input_version="2.0.5" # { x-release-please-version }
fi

autocommit=''
Expand Down