-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version to 0.1.2 and add changelog
- Loading branch information
Showing
3 changed files
with
35 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Changelog | ||
|
||
## 0.1.2 - 2020-09-13 | ||
|
||
- Implement support for destructuring and `let` bindings in rules | ||
- Add a span for more specific "invalid relation" error messages | ||
- Hygiene: write full paths for derived traits | ||
- Add documentation for the generated runtime | ||
- Add more comprehensive tests: `&static str` in relation, `f64` in relation | ||
- Make clippy happy | ||
|
||
## 0.1.1 - 2020-09-01 | ||
|
||
- Fix bug causing docs to not render properly | ||
|
||
## 0.1.0 - 2020-09-01 | ||
|
||
Initial release - `crepe!` macro, Datalog runtime, semi-naive evaluation, | ||
stratified negation. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "crepe" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = ["Eric Zhang <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
description = "Datalog in Rust as a procedural macro" | ||
|