diff --git a/Cargo.toml b/Cargo.toml index 52571a04f..d6b0147e1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,13 @@ repository.workspace = true rust-version.workspace = true description = "A generic framework for on-demand, incrementalized computation (experimental)" exclude = [ - "book/", + "/.devcontainer/", + "/.dir-locals.el", + "/.github/", + "/.gitignore", + "/book/", + "/justfile", + "/release-plz.toml", ] [dependencies] diff --git a/RELEASES.md b/RELEASES.md deleted file mode 100644 index 732c400e8..000000000 --- a/RELEASES.md +++ /dev/null @@ -1,14 +0,0 @@ -# 0.13.0 - -- **Breaking change:** adopt the new `Durability` API proposed in [RFC #6] - - this replaces and generalizes the existing concepts of constants -- **Breaking change:** remove "volatile" queries - - instead, create a normal query which invokes the - `report_untracked_read` method on the salsa runtime -- introduce "slots", an optimization to salsa's internal workings -- document `#[salsa::requires]` attribute, which permits private dependencies -- Adopt `AtomicU64` for `runtimeId` (#182) -- use `ptr::eq` and `ptr::hash` for readability -- upgrade parking lot, rand dependencies - -[RFC #6]: https://github.com/salsa-rs/salsa-rfcs/pull/6