Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.1.1 with improvements and bugfixes #29

Merged
merged 1 commit into from
Dec 15, 2023
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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Satisfiability"
uuid = "160ab843-0bc6-4ba4-9585-b7478b70f443"
authors = ["Emi Soroka <[email protected]>, Mykel Kochenderfer, Sanjay Lall"]
version = "0.1.0"
version = "0.1.1"

[compat]
julia = "1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,4 +75,4 @@ println(status) # if status is UNSAT we proved it.
```

## Development status
Release 0.1.0 is out! You can install it with the command `using Pkg; Pkg.add("Satisfiability")`. Please help make the Julia ecosystem better for everyone by opening a GitHub issue if you have feedback or find a bug.
Release 0.1.1 is out! You can install it with the command `using Pkg; Pkg.add("Satisfiability")`. Please help make the Julia ecosystem better for everyone by opening a GitHub issue if you have feedback or find a bug.
3 changes: 2 additions & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ pages = [
],
"Library" => [
"functions.md"
]
],
"release_notes.md"
],
format=fmt,
)
Expand Down
13 changes: 13 additions & 0 deletions docs/src/release_notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Release Notes
```@contents
Pages = ["release_notes.md"]
Depth = 3
```
# Version 0.1.1 (December 15, 2023)
* Fixed bugs in issues #21 and #26.
* Added remaining operators defined in SMT-LIB QF_BV (bitvector) specification (issue #22)
* Add `^` for square
* Correctly promote expressions containing mixed `BoolExpr`, `IntExpr` and `RealExpr` types. When a Boolean variable `z` is used in an arithmetic expression, it is rewritten to `ite(z 1 0)` (int) or `ite(z 1.0 0.0)` (real), which matches Z3's behavior. The SMT-LIB functions `to_real` and `to_int` are used to convert mixed `IntExpr`s and `RealExpr`s.

# Version 0.1.0 (August 27, 2023)
Initial release.