Skip to content
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
8 changes: 4 additions & 4 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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
[
Expand All @@ -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",
]]
]

Expand Down Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ CEL-Java is available in Maven Central Repository. [Download the JARs here][8] o
<dependency>
<groupId>dev.cel</groupId>
<artifactId>cel</artifactId>
<version>0.11.0</version>
<version>0.11.1</version>
</dependency>
```

**Gradle**

```gradle
implementation 'dev.cel:cel:0.11.0'
implementation 'dev.cel:cel:0.11.1'
```

Then run this example:
Expand Down
1 change: 0 additions & 1 deletion conformance/src/test/java/dev/cel/conformance/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion publish/cel_version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Loading