Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 2.1.2 #110

Merged
merged 3 commits into from
Nov 18, 2024
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.1.1"
".": "2.1.2"
}
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.1.2](https://github.com/launchdarkly/lua-server-sdk/compare/v2.1.1...v2.1.2) (2024-11-18)


### Bug Fixes

* **deps:** bump C++ server dep for holdouts fix ([#109](https://github.com/launchdarkly/lua-server-sdk/issues/109)) ([53a7ef1](https://github.com/launchdarkly/lua-server-sdk/commit/53a7ef19fea3fcea6209f18fdde42d699b464cdc))

## [2.1.1](https://github.com/launchdarkly/lua-server-sdk/compare/v2.1.0...v2.1.1) (2024-07-15)


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,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.1.1-0.rockspec \
luarocks make launchdarkly-server-sdk-2.1.2-0.rockspec \
LD_DIR=./path-to-installed-cpp-sdk
```
**Install the base SDK with Redis support**
```bash
luarocks make launchdarkly-server-sdk-redis-2.1.1-0.rockspec \
luarocks make launchdarkly-server-sdk-redis-2.1.2-0.rockspec \
LDREDIS_DIR=./path-to-cpp-sdk-with-redis-support-installation
```

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

# {{ x-release-please-start-version }}
ARG VERSION=2.1.1
ARG VERSION=2.1.2
# {{ x-release-please-end }}

ARG CPP_SDK_VERSION=3.8.0
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.1.1
ARG VERSION=2.1.2
# {{ x-release-please-end }}

ARG CPP_SDK_VERSION=3.8.0
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-nginx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
FROM openresty/openresty:1.21.4.1-0-jammy

# {{ x-release-please-start-version }}
ARG VERSION=2.1.1
ARG VERSION=2.1.2
# {{ x-release-please-end }}

ARG CPP_SDK_VERSION=3.8.0
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.1.1-0"
version = "2.1.2-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.1.1"
tag = "v2.1.2"
}

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.1.1-0"
version = "2.1.2-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.1.1"
tag = "v2.1.2"
}

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

autocommit=''
Expand Down
Loading