From 7caf057c4306e4e57bc8a2a731c1946ef58efba5 Mon Sep 17 00:00:00 2001 From: Dmitri Plotnikov Date: Mon, 20 Oct 2025 14:19:34 -0700 Subject: [PATCH] Prepare 0.11.1 release PiperOrigin-RevId: 821803417 --- MODULE.bazel | 8 ++++---- README.md | 4 ++-- conformance/src/test/java/dev/cel/conformance/BUILD.bazel | 1 - publish/cel_version.bzl | 2 +- 4 files changed, 7 insertions(+), 8 deletions(-) diff --git a/MODULE.bazel b/MODULE.bazel index de3cbdace..8e0e79068 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -35,11 +35,11 @@ use_repo(switched_rules, "com_google_googleapis_imports") maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven") -GUAVA_VERSION = "33.4.8" +GUAVA_VERSION = "33.5.0" TRUTH_VERSION = "1.4.4" -PROTOBUF_JAVA_VERSION = "4.32.0" +PROTOBUF_JAVA_VERSION = "4.33.0" # Compile only artifacts [ @@ -51,7 +51,7 @@ PROTOBUF_JAVA_VERSION = "4.32.0" ) for group, artifact, version in [coord.split(":") for coord in [ "com.google.code.findbugs:annotations:3.0.1", - "com.google.errorprone:error_prone_annotations:2.41.0", + "com.google.errorprone:error_prone_annotations:2.42.0", ]] ] @@ -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"], repositories = [ "https://maven.google.com", "https://repo1.maven.org/maven2", diff --git a/README.md b/README.md index 61ac687b9..f46a1f8c6 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 ``` **Gradle** ```gradle -implementation 'dev.cel:cel:0.11.0' +implementation 'dev.cel:cel:0.11.1' ``` Then run this example: diff --git a/conformance/src/test/java/dev/cel/conformance/BUILD.bazel b/conformance/src/test/java/dev/cel/conformance/BUILD.bazel index 69755324d..7283e2977 100644 --- a/conformance/src/test/java/dev/cel/conformance/BUILD.bazel +++ b/conformance/src/test/java/dev/cel/conformance/BUILD.bazel @@ -49,7 +49,6 @@ java_library( tags = ["conformance_maven"], deps = MAVEN_JAR_DEPS + [ "//:java_truth", - "//parser:parser_factory", # TODO: Remove next OSS release "//testing:expr_value_utils", "@cel_spec//proto/cel/expr:expr_java_proto", "@cel_spec//proto/cel/expr/conformance/proto2:test_all_types_java_proto", diff --git a/publish/cel_version.bzl b/publish/cel_version.bzl index 935b2f7b1..7938f15a1 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"