mirror of
https://github.com/salsa-rs/salsa.git
synced 2025-01-12 08:30:51 +00:00
release 0.11.0
Changes: - Add interned keys to salsa (#150) -- see salsa-rs/salsa-rfcs#2 for more details. - Fix bugs re: GC and volatile queries - Optimization for GC (#144), though I think this later got undone as part of the bug fixes =)
This commit is contained in:
parent
3925337a3c
commit
31235aaa96
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "salsa"
|
name = "salsa"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
|
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0 OR MIT"
|
license = "Apache-2.0 OR MIT"
|
||||||
|
@ -16,7 +16,7 @@ lock_api = "0.1.4"
|
||||||
indexmap = "1.0.1"
|
indexmap = "1.0.1"
|
||||||
log = "0.4.5"
|
log = "0.4.5"
|
||||||
smallvec = "0.6.5"
|
smallvec = "0.6.5"
|
||||||
salsa-macros = { version = "0.10.0", path = "components/salsa-macros" }
|
salsa-macros = { version = "0.11.0", path = "components/salsa-macros" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
diff = "0.1.0"
|
diff = "0.1.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "salsa-macros"
|
name = "salsa-macros"
|
||||||
version = "0.10.0"
|
version = "0.11.0"
|
||||||
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
|
authors = ["Niko Matsakis <niko@alum.mit.edu>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0 OR MIT"
|
license = "Apache-2.0 OR MIT"
|
||||||
|
|
Loading…
Reference in a new issue