Skip to content

Commit 7caf057

Browse files
dmitriplotnikovcopybara-github
authored andcommitted
Prepare 0.11.1 release
PiperOrigin-RevId: 821803417
1 parent 9c7c431 commit 7caf057

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

MODULE.bazel

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ use_repo(switched_rules, "com_google_googleapis_imports")
3535

3636
maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
3737

38-
GUAVA_VERSION = "33.4.8"
38+
GUAVA_VERSION = "33.5.0"
3939

4040
TRUTH_VERSION = "1.4.4"
4141

42-
PROTOBUF_JAVA_VERSION = "4.32.0"
42+
PROTOBUF_JAVA_VERSION = "4.33.0"
4343

4444
# Compile only artifacts
4545
[
@@ -51,7 +51,7 @@ PROTOBUF_JAVA_VERSION = "4.32.0"
5151
)
5252
for group, artifact, version in [coord.split(":") for coord in [
5353
"com.google.code.findbugs:annotations:3.0.1",
54-
"com.google.errorprone:error_prone_annotations:2.41.0",
54+
"com.google.errorprone:error_prone_annotations:2.42.0",
5555
]]
5656
]
5757

@@ -114,7 +114,7 @@ maven.install(
114114

115115
maven.install(
116116
name = "maven_conformance",
117-
artifacts = ["dev.cel:cel:0.11.0"],
117+
artifacts = ["dev.cel:cel:0.11.1"],
118118
repositories = [
119119
"https://maven.google.com",
120120
"https://repo1.maven.org/maven2",

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ CEL-Java is available in Maven Central Repository. [Download the JARs here][8] o
5555
<dependency>
5656
<groupId>dev.cel</groupId>
5757
<artifactId>cel</artifactId>
58-
<version>0.11.0</version>
58+
<version>0.11.1</version>
5959
</dependency>
6060
```
6161

6262
**Gradle**
6363

6464
```gradle
65-
implementation 'dev.cel:cel:0.11.0'
65+
implementation 'dev.cel:cel:0.11.1'
6666
```
6767

6868
Then run this example:

conformance/src/test/java/dev/cel/conformance/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ java_library(
4949
tags = ["conformance_maven"],
5050
deps = MAVEN_JAR_DEPS + [
5151
"//:java_truth",
52-
"//parser:parser_factory", # TODO: Remove next OSS release
5352
"//testing:expr_value_utils",
5453
"@cel_spec//proto/cel/expr:expr_java_proto",
5554
"@cel_spec//proto/cel/expr/conformance/proto2:test_all_types_java_proto",

publish/cel_version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
"""Maven artifact version for CEL."""
15-
CEL_VERSION = "0.11.0"
15+
CEL_VERSION = "0.11.1"

0 commit comments

Comments
 (0)