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
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.10.0</version>
<version>0.10.1</version>
</dependency>
```

**Gradle**

```gradle
implementation 'dev.cel:cel:0.10.0'
implementation 'dev.cel:cel:0.10.1'
```

Then run this example:
Expand Down
8 changes: 6 additions & 2 deletions publish/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,13 @@ EXTENSION_TARGETS = [
"//extensions/src/main/java/dev/cel/extensions:optional_library",
]

ALL_TARGETS = [
BUNDLE_TARGETS = [
"//bundle/src/main/java/dev/cel/bundle:cel",
] + RUNTIME_TARGETS + COMPILER_TARGETS + EXTENSION_TARGETS + V1ALPHA1_AST_TARGETS + CANONICAL_AST_TARGETS + OPTIMIZER_TARGETS + VALIDATOR_TARGETS + POLICY_COMPILER_TARGETS
"//bundle/src/main/java/dev/cel/bundle:environment",
"//bundle/src/main/java/dev/cel/bundle:environment_yaml_parser",
]

ALL_TARGETS = BUNDLE_TARGETS + RUNTIME_TARGETS + COMPILER_TARGETS + EXTENSION_TARGETS + V1ALPHA1_AST_TARGETS + CANONICAL_AST_TARGETS + OPTIMIZER_TARGETS + VALIDATOR_TARGETS + POLICY_COMPILER_TARGETS

# Excluded from the JAR as their source of truth is elsewhere
EXCLUDED_TARGETS = [
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.10.0"
CEL_VERSION = "0.10.1"
Loading