Skip to content

Commit

Permalink
Bumping version
Browse files Browse the repository at this point in the history
  • Loading branch information
Liby99 committed Apr 3, 2023
1 parent 4a407f1 commit 63e3b0b
Show file tree
Hide file tree
Showing 244 changed files with 8,228 additions and 1,625 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ members = [
"etc/scallop-wasm",
"lib/sdd",
"lib/rsat",
"lib/ram",
]

default-members = [
Expand Down
16 changes: 15 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# v0.1.7, Jan 12, 2022
# latest

- Fixed a bug so that NaN would not appear in the value computation
- Fixed a bug in `scallopy` where disjunctive facts are not processed correctly

# v0.1.8, Mar 27, 2023

- Add foreign predicates including soft comparisons,
- Add `DateTime` and `Duration` support
- Add input-mapping support for multi-dimensional inputs in `scallopy`
- Fixing floating point support by rejecting `NaN` values
- Adding back iteration-limit to runtime environment
- Add Scallop book repository

# v0.1.7, Jan 12, 2023

- Better integration with Extensional Databases (EDB) and memory optimizations
- Better handling of mutual exclusive facts in probabilistic/differentiable reasoning
Expand Down
10 changes: 7 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
[package]
name = "scallop-core"
version = "0.1.7"
version = "0.1.8"
authors = ["Ziyang Li <[email protected]>"]
edition = "2018"

[lib]
crate-type = ["rlib"]

[build-dependencies]
lalrpop = { version = "0.19.0", features = ["lexer"] }
lalrpop = { version = "0.19.9", features = ["lexer"] }

[dependencies]
lalrpop-util = "0.19.0"
lalrpop-util = "0.19.9"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0"
syn = "1.0"
Expand All @@ -21,6 +21,10 @@ colored = "2.0"
petgraph = "0.6"
csv = "1.1"
sprs = "0.11"
chrono = "0.4"
dateparser = "0.1.6"
parse_duration = "2.1.1"
dyn-clone = "1.0.10"
lazy_static = "1.4"
rand = { version = "0.8", features = ["std_rng", "small_rng", "alloc"] }
sdd = { path = "../lib/sdd" }
Loading

0 comments on commit 63e3b0b

Please sign in to comment.