From 6c5575d9f2f3d9b65fa70f94c3132832ac7bb7c1 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Fri, 25 Jan 2019 05:21:51 -0500 Subject: [PATCH] release 0.10.0-alpha2 - You now write `#[salsa::database(query_groups...)]` instead of `database_storage!`, and you don't ned to list individual queries (#123, #124, #125) - We now generate `set_foo` methods for inputs (#126) - We can now peek at values using debug query interface (#122) - Local handles recover from unwinds better (#114) - We don't issue docs for `__SalsaQueryDescriptor` (#116) - The unwind safety impls were moved about (internal refactoring, #115) Contributors (since I've not been citing these in the past, this includes all contributors to salsa to date): - @cormacrelf - @fabianschuiki - @jrmuizel - @kleimkuhler - @matklad - @memoryruins - @nikomatsakis --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dfdc7c9c..31c47e43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "salsa" -version = "0.10.0-alpha1" +version = "0.10.0-alpha2" authors = ["Niko Matsakis "] edition = "2018" license = "Apache-2.0 OR MIT"