File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed
Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff 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.10.0 </version >
58+ <version >0.10.1 </version >
5959</dependency >
6060```
6161
6262** Gradle**
6363
6464``` gradle
65- implementation 'dev.cel:cel:0.10.0 '
65+ implementation 'dev.cel:cel:0.10.1 '
6666```
6767
6868Then run this example:
Original file line number Diff line number Diff line change @@ -84,9 +84,13 @@ EXTENSION_TARGETS = [
8484 "//extensions/src/main/java/dev/cel/extensions:optional_library" ,
8585]
8686
87- ALL_TARGETS = [
87+ BUNDLE_TARGETS = [
8888 "//bundle/src/main/java/dev/cel/bundle:cel" ,
89- ] + RUNTIME_TARGETS + COMPILER_TARGETS + EXTENSION_TARGETS + V1ALPHA1_AST_TARGETS + CANONICAL_AST_TARGETS + OPTIMIZER_TARGETS + VALIDATOR_TARGETS + POLICY_COMPILER_TARGETS
89+ "//bundle/src/main/java/dev/cel/bundle:environment" ,
90+ "//bundle/src/main/java/dev/cel/bundle:environment_yaml_parser" ,
91+ ]
92+
93+ ALL_TARGETS = BUNDLE_TARGETS + RUNTIME_TARGETS + COMPILER_TARGETS + EXTENSION_TARGETS + V1ALPHA1_AST_TARGETS + CANONICAL_AST_TARGETS + OPTIMIZER_TARGETS + VALIDATOR_TARGETS + POLICY_COMPILER_TARGETS
9094
9195# Excluded from the JAR as their source of truth is elsewhere
9296EXCLUDED_TARGETS = [
Original file line number Diff line number Diff line change 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.10.0 "
15+ CEL_VERSION = "0.10.1 "
You can’t perform that action at this time.
0 commit comments