Skip to content

Commit a881ed4

Browse files
l46kokcopybara-github
authored andcommitted
Prepare 0.12.0 Release
PiperOrigin-RevId: 877448588
1 parent 3fd7b96 commit a881ed4

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ TRUTH_VERSION = "1.4.4"
4646

4747
PROTOBUF_JAVA_VERSION = "4.33.5"
4848

49-
CEL_VERSION = "0.12.0-SNAPSHOT"
49+
CEL_VERSION = "0.12.0"
5050

5151
# Compile only artifacts
5252
[

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

6262
**Gradle**
6363

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

6868
Then run this example:

publish/BUILD.bazel

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ COMMON_TARGETS = [
2121
"//common/src/main/java/dev/cel/common/internal:file_descriptor_converter",
2222
"//common/src/main/java/dev/cel/common/internal:safe_string_formatter",
2323
"//common/src/main/java/dev/cel/common/types:cel_types",
24+
"//common/src/main/java/dev/cel/common/types:message_type_provider",
2425
"//common/src/main/java/dev/cel/common/values",
2526
"//common/src/main/java/dev/cel/common/values:cel_value",
2627
]
@@ -31,6 +32,7 @@ RUNTIME_TARGETS = [
3132
"//runtime/src/main/java/dev/cel/runtime:base",
3233
"//runtime/src/main/java/dev/cel/runtime:interpreter",
3334
"//runtime/src/main/java/dev/cel/runtime:late_function_binding",
35+
"//runtime/src/main/java/dev/cel/runtime:runtime_experimental_factory",
3436
"//runtime/src/main/java/dev/cel/runtime:runtime_factory",
3537
"//runtime/src/main/java/dev/cel/runtime:runtime_helpers",
3638
"//runtime/src/main/java/dev/cel/runtime:runtime_legacy_impl",
@@ -123,6 +125,7 @@ EXTENSION_TARGETS = [
123125
# keep sorted
124126
BUNDLE_TARGETS = [
125127
"//bundle/src/main/java/dev/cel/bundle:cel",
128+
"//bundle/src/main/java/dev/cel/bundle:cel_experimental_factory",
126129
"//bundle/src/main/java/dev/cel/bundle:environment",
127130
"//bundle/src/main/java/dev/cel/bundle:environment_yaml_parser",
128131
]

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.12.0-SNAPSHOT"
15+
CEL_VERSION = "0.12.0"

0 commit comments

Comments
 (0)