From fcb47df2af99db0d85b8d062e533991c3747ab57 Mon Sep 17 00:00:00 2001 From: Sebastian Spaink Date: Thu, 30 Jul 2026 17:57:40 -0500 Subject: [PATCH] docs: bump README install snippets to 0.3.0 The Gradle and Maven dependency snippets still pointed at 0.1.0, so anyone copying them from the README after the v0.3.0 release would pull a two-release-old SDK. Update all ten coordinates in both the opa-services and opa-evaluator install examples. Signed-off-by: Sebastian Spaink --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 27786d78..0f781a3f 100644 --- a/README.md +++ b/README.md @@ -59,8 +59,8 @@ Most applications should depend on the `opa-services` module, which transitively **Gradle** ```kotlin -implementation("io.github.open-policy-agent:opa-services:0.1.0") -runtimeOnly("io.github.open-policy-agent:opa-builtins:0.1.0") +implementation("io.github.open-policy-agent:opa-services:0.3.0") +runtimeOnly("io.github.open-policy-agent:opa-builtins:0.3.0") ``` **Maven** @@ -69,12 +69,12 @@ runtimeOnly("io.github.open-policy-agent:opa-builtins:0.1.0") io.github.open-policy-agent opa-services - 0.1.0 + 0.3.0 io.github.open-policy-agent opa-builtins - 0.1.0 + 0.3.0 runtime ``` @@ -84,9 +84,9 @@ For lightweight evaluation without the plugin runtime, depend on `opa-evaluator` **Gradle** ```kotlin -implementation("io.github.open-policy-agent:opa-evaluator:0.1.0") -runtimeOnly("io.github.open-policy-agent:opa-jackson:0.1.0") -runtimeOnly("io.github.open-policy-agent:opa-builtins:0.1.0") +implementation("io.github.open-policy-agent:opa-evaluator:0.3.0") +runtimeOnly("io.github.open-policy-agent:opa-jackson:0.3.0") +runtimeOnly("io.github.open-policy-agent:opa-builtins:0.3.0") ``` **Maven** @@ -95,18 +95,18 @@ runtimeOnly("io.github.open-policy-agent:opa-builtins:0.1.0") io.github.open-policy-agent opa-evaluator - 0.1.0 + 0.3.0 io.github.open-policy-agent opa-jackson - 0.1.0 + 0.3.0 runtime io.github.open-policy-agent opa-builtins - 0.1.0 + 0.3.0 runtime ```