From 28fa06a85f5b8357da56f41e34d0a53f32a0290b Mon Sep 17 00:00:00 2001 From: Connor Skees Date: Fri, 3 Jul 2020 21:22:29 -0400 Subject: [PATCH] bump version to 0.9.2 --- Cargo.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 838d9d3..e87dc5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "grass" -version = "0.9.1" +version = "0.9.2" description = "A near-feature-complete Sass compiler written purely in Rust" readme = "README.md" license = "MIT" @@ -24,22 +24,27 @@ crate-type = ["cdylib", "rlib"] bench = false [[bench]] +path = "benches/variables.rs" name = "variables" harness = false [[bench]] +path = "benches/colors.rs" name = "colors" harness = false [[bench]] +path = "benches/numbers.rs" name = "numbers" harness = false [[bench]] +path = "benches/control_flow.rs" name = "control_flow" harness = false [[bench]] +path = "benches/styles.rs" name = "styles" harness = false