diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 5d9c34a..7cf81b6 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -29,7 +29,7 @@ jobs:
run: mvn -B package --file pom.xml
env:
REFORGE_INTEGRATION_TEST_SDK_KEY: ${{ secrets.REFORGE_INTEGRATION_TEST_SDK_KEY }}
- REFORGE_SDK_KEY: 1-fake-apikey
+ REFORGE_BACKEND_SDK_KEY: 1-fake-apikey
REFORGE_INTEGRATION_TEST_ENCRYPTION_KEY: "c87ba22d8662282abe8a0e4651327b579cb64a454ab0f4c170b45b15f049a221"
PREFAB_INTEGRATION_TEST_ENCRYPTION_KEY: "c87ba22d8662282abe8a0e4651327b579cb64a454ab0f4c170b45b15f049a221"
NOT_A_NUMBER: "not a number"
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index c23315e..59e3b17 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -80,7 +80,7 @@ jobs:
mvn clean deploy -P release --no-transfer-progress
env:
REFORGE_INTEGRATION_TEST_SDK_KEY: ${{ secrets.REFORGE_INTEGRATION_TEST_SDK_KEY }}
- REFORGE_SDK_KEY: 1-fake-apikey
+ REFORGE_BACKEND_SDK_KEY: 1-fake-apikey
REFORGE_INTEGRATION_TEST_ENCRYPTION_KEY: "c87ba22d8662282abe8a0e4651327b579cb64a454ab0f4c170b45b15f049a221"
PREFAB_INTEGRATION_TEST_ENCRYPTION_KEY: "c87ba22d8662282abe8a0e4651327b579cb64a454ab0f4c170b45b15f049a221"
NOT_A_NUMBER: "not a number"
diff --git a/README.md b/README.md
index 5ba8692..1f75666 100644
--- a/README.md
+++ b/README.md
@@ -12,7 +12,7 @@ Maven
com.reforge
sdk
- 0.3.26
+ 1.0.0
```
diff --git a/micronaut/README.md b/micronaut/README.md
index 559405d..1ea8721 100644
--- a/micronaut/README.md
+++ b/micronaut/README.md
@@ -20,13 +20,13 @@ Maven
com.reforge
sdk-micronaut-extension
- 0.3.26
+ 1.0.0
```
The context store implementation is added to the Reforge `Options` class.
-You'll likely have a factory class like this one - see the `options.setContextStore(new ServerRequestContextStore());` in the sdk method
+You'll likely have a factory class like this oneāsee the `options.setContextStore(new ServerRequestContextStore());` in the sdk method
```java
@Factory
diff --git a/micronaut/pom.xml b/micronaut/pom.xml
index eaf0ede..4ac0226 100644
--- a/micronaut/pom.xml
+++ b/micronaut/pom.xml
@@ -4,7 +4,7 @@
com.reforge
sdk-parent
- 0.3.27
+ 1.0.0
sdk-micronaut-extension
diff --git a/pom.xml b/pom.xml
index 62a3335..7643fbd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -11,7 +11,7 @@
com.reforge
sdk-parent
- 0.3.27
+ 1.0.0
pom
Reforge SDK Parent POM
Parent POM for Reforge SDK modules providing feature flags, configuration management, and A/B testing capabilities
diff --git a/sdk/pom.xml b/sdk/pom.xml
index 311cdf5..6cfa189 100644
--- a/sdk/pom.xml
+++ b/sdk/pom.xml
@@ -4,7 +4,7 @@
com.reforge
sdk-parent
- 0.3.27
+ 1.0.0
sdk
diff --git a/sdk/src/main/java/com/reforge/sdk/Options.java b/sdk/src/main/java/com/reforge/sdk/Options.java
index 9221217..1864f68 100644
--- a/sdk/src/main/java/com/reforge/sdk/Options.java
+++ b/sdk/src/main/java/com/reforge/sdk/Options.java
@@ -74,7 +74,7 @@ public enum CollectContextMode {
public Options() {
setApikey(
Optional
- .ofNullable(System.getenv("REFORGE_SDK_KEY"))
+ .ofNullable(System.getenv("REFORGE_BACKEND_SDK_KEY"))
.orElse(System.getenv("PREFAB_API_KEY"))
);
if ("LOCAL_ONLY".equals(System.getenv("REFORGE_DATASOURCES"))) {