File tree 2 files changed +16
-4
lines changed
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.8.0
2
+
3
+ - Composition feature: added the ` ascent_source! ` macro and the ` include_source! ` syntax (thanks to @JoranHonig
4
+ for the suggestion (#44 ) and @StarGazerM for the idea).
5
+
6
+ - Made index fields in generated Ascent code private (#58 ).
7
+
8
+ - Added ` | ` as the disjunction token in disjunction clauses, deprecating ` || ` .
9
+
10
+ - Added a small optimization where rule evaluation is skipped if any body relation is empty (#57 )
11
+
1
12
## 0.7.0
2
13
3
14
- Fixed unsoundness in ` util::update ` (#41 )
15
+
4
16
- Moved ` ascent_par! ` and required dependencies behind Cargo feature ` par ` (enabled by default)
5
17
6
18
## 0.6.0
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ exclude = ["ascent_tests", "wasm-tests"]
4
4
resolver = " 2"
5
5
6
6
[workspace .package ]
7
- version = " 0.7 .0"
7
+ version = " 0.8 .0"
8
8
9
9
[workspace .dependencies ]
10
- ascent = { path = " ./ascent" , default-features = false , version = " 0.7 .0" }
11
- ascent_macro = { path = " ./ascent_macro" , version = " 0.7 .0" }
12
- ascent_base = { path = " ./ascent_base" , version = " 0.7 .0" }
10
+ ascent = { path = " ./ascent" , default-features = false , version = " 0.8 .0" }
11
+ ascent_macro = { path = " ./ascent_macro" , version = " 0.8 .0" }
12
+ ascent_base = { path = " ./ascent_base" , version = " 0.8 .0" }
You can’t perform that action at this time.
0 commit comments