diff --git a/CHANGELOG.md b/CHANGELOG.md index 06ca69c..df61508 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.0] - 2021-03-14 +### Fixed +* All w3 selectors (partially) supported (Issue [#66](https://github.com/out-of-cheese-error/gooseberry/issues/66)) + ## [0.7.1] - 2021-03-29 ### Added diff --git a/Cargo.lock b/Cargo.lock index e30964d..d0b04fc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1051,7 +1051,7 @@ dependencies = [ [[package]] name = "gooseberry" -version = "0.7.1" +version = "0.8.0" dependencies = [ "assert_cmd", "bat", @@ -1220,9 +1220,9 @@ dependencies = [ [[package]] name = "hypothesis" -version = "0.10.0" +version = "0.10.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bdc100125048775aae837b7be820fef0379df2685b6aaf9fcbef35dcc56d858" +checksum = "51814206b4ee9e2269e1198bb26648e643d47b13156a5edd6c43e1eb089ac154" dependencies = [ "chrono", "derive_builder", diff --git a/Cargo.toml b/Cargo.toml index 45bf8dd..4a41b72 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gooseberry" -version = "0.7.1" +version = "0.8.0" authors = ["Ninjani"] edition = "2018" description = "A command line utility to generate a knowledge base from Hypothesis annotations " @@ -13,7 +13,7 @@ include = ["src/**/*", "README.md"] [dependencies] # Hypothesis -hypothesis = { version = "0.10.0", default-features = false } +hypothesis = { version = "0.10.2", default-features = false } tokio = { version = "1.4.0", features = ["macros"] } # To extract the base URI