From 9fad70ac4325e06473afdb9779971ffb8ccbcf18 Mon Sep 17 00:00:00 2001 From: Sokwhan Huh Date: Wed, 10 Sep 2025 11:01:40 -0700 Subject: [PATCH] Maven publish demo PiperOrigin-RevId: 805433703 --- MODULE.bazel | 2 +- README.md | 4 ++-- publish/cel_version.bzl | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index de3cbdace..adb9f0ed6 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -114,7 +114,7 @@ maven.install( maven.install( name = "maven_conformance", - artifacts = ["dev.cel:cel:0.11.0"], + artifacts = ["dev.cel:cel:0.11.1-demo"], repositories = [ "https://maven.google.com", "https://repo1.maven.org/maven2", diff --git a/README.md b/README.md index 61ac687b9..dd7713db0 100644 --- a/README.md +++ b/README.md @@ -55,14 +55,14 @@ CEL-Java is available in Maven Central Repository. [Download the JARs here][8] o dev.cel cel - 0.11.0 + 0.11.1-demo ``` **Gradle** ```gradle -implementation 'dev.cel:cel:0.11.0' +implementation 'dev.cel:cel:0.11.1-demo' ``` Then run this example: diff --git a/publish/cel_version.bzl b/publish/cel_version.bzl index 935b2f7b1..d2aa6f313 100644 --- a/publish/cel_version.bzl +++ b/publish/cel_version.bzl @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. """Maven artifact version for CEL.""" -CEL_VERSION = "0.11.0" +CEL_VERSION = "0.11.1-demo"