Skip to content

Commit 70ae998

Browse files
l46kokcopybara-github
authored andcommitted
Release 0.7.0
PiperOrigin-RevId: 669351240
1 parent 7398767 commit 70ae998

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

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.6.0</version>
58+
<version>0.7.0</version>
5959
</dependency>
6060
```
6161

6262
**Gradle**
6363

6464
```gradle
65-
implementation 'dev.cel:cel:0.6.0'
65+
implementation 'dev.cel:cel:0.7.0'
6666
```
6767

6868
Then run this example:

WORKSPACE

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,26 +64,26 @@ load("@rules_jvm_external//:setup.bzl", "rules_jvm_external_setup")
6464

6565
rules_jvm_external_setup()
6666

67-
ANTLR4_VERSION = "4.13.1"
67+
ANTLR4_VERSION = "4.13.2"
6868

6969
# Important: there can only be one maven_install rule. Add new maven deps here.
7070
maven_install(
7171
# keep sorted
7272
artifacts = [
73-
"com.google.auto.value:auto-value:1.10.4",
74-
"com.google.auto.value:auto-value-annotations:1.10.4",
73+
"com.google.auto.value:auto-value:1.11.0",
74+
"com.google.auto.value:auto-value-annotations:1.11.0",
7575
"com.google.code.findbugs:annotations:3.0.1",
76-
"com.google.errorprone:error_prone_annotations:2.26.1",
77-
"com.google.guava:guava:33.1.0-jre",
78-
"com.google.guava:guava-testlib:33.1.0-jre",
76+
"com.google.errorprone:error_prone_annotations:2.30.0",
77+
"com.google.guava:guava:33.3.0-jre",
78+
"com.google.guava:guava-testlib:33.3.0-jre",
7979
"com.google.protobuf:protobuf-java-util:4.27.3",
8080
"com.google.re2j:re2j:1.7",
8181
"com.google.testparameterinjector:test-parameter-injector:1.15",
8282
"com.google.truth.extensions:truth-java8-extension:1.4.2",
8383
"com.google.truth.extensions:truth-proto-extension:1.4.2",
8484
"com.google.truth:truth:1.4.2",
8585
"org.antlr:antlr4-runtime:" + ANTLR4_VERSION,
86-
"org.jspecify:jspecify:0.3.0",
86+
"org.jspecify:jspecify:1.0.0",
8787
"org.threeten:threeten-extra:1.8.0",
8888
"org.yaml:snakeyaml:2.2",
8989
],
@@ -168,7 +168,7 @@ http_archive(
168168

169169
http_jar(
170170
name = "antlr4_jar",
171-
sha256 = "bc13a9c57a8dd7d5196888211e5ede657cb64a3ce968608697e4f668251a8487",
171+
sha256 = "eae2dfa119a64327444672aff63e9ec35a20180dc5b8090b7a6ab85125df4d76",
172172
urls = ["https://www.antlr.org/download/antlr-" + ANTLR4_VERSION + "-complete.jar"],
173173
)
174174

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.6.0"
15+
CEL_VERSION = "0.7.0"

0 commit comments

Comments
 (0)