Skip to content

Commit 0855bbf

Browse files
committed
Preparing v0.8.0 release
1 parent 3f4b2fd commit 0855bbf

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed

CHANGELOG.MD

+12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
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+
112
## 0.7.0
213

314
- Fixed unsoundness in `util::update` (#41)
15+
416
- Moved `ascent_par!` and required dependencies behind Cargo feature `par` (enabled by default)
517

618
## 0.6.0

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ exclude = ["ascent_tests", "wasm-tests"]
44
resolver = "2"
55

66
[workspace.package]
7-
version = "0.7.0"
7+
version = "0.8.0"
88

99
[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" }

0 commit comments

Comments
 (0)