From 9f6970608a5de938cb90a869b2bf65953a86f5ba Mon Sep 17 00:00:00 2001 From: Ninjani Date: Sat, 26 Oct 2024 12:34:11 +0200 Subject: [PATCH 1/2] chore: update hypothesis version --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9f84867..9d1dd59 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1363,9 +1363,9 @@ dependencies = [ [[package]] name = "hypothesis" -version = "0.11.1" +version = "0.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9714d3b087290cabd4e66d9943f62b7da4cb74bf413a69b53de31b779429a647" +checksum = "d4c160647c2b02b87128dd472dd1a3e51f38287d11de2ef65efcb4822dd637a1" dependencies = [ "chrono", "derive_builder 0.12.0", diff --git a/Cargo.toml b/Cargo.toml index c305191..c7c1bab 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ include = ["src/**/*", "README.md"] [dependencies] # Hypothesis -hypothesis = { version = "0.11.1", default-features = false } +hypothesis = { version = "0.12.0", default-features = false } tokio = { version = "1.20.1", features = ["macros"] } # To extract the base URI From 131c345680f1b94276dc5c81409cb472ce3fd8a5 Mon Sep 17 00:00:00 2001 From: Ninjani Date: Sat, 26 Oct 2024 12:34:46 +0200 Subject: [PATCH 2/2] chore: version bump --- CHANGELOG.md | 11 +++++++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5d190b7..ec405b7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,13 @@ 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.10.0] - Unreleased -## Changed + +## [0.10.1] - 2024-10-26 +### Changed +- Updated hypothesis crate to 0.12.0 to support all Hypothesis selectors (Issue [#66](https://github.com/out-of-cheese-error/gooseberry/issues/66)) + +## [0.10.0] - 2024-03-02 +### Changed - Store annotations in local database for faster search and retrieval. (Issue [#76](https://github.com/out-of-cheese-error/gooseberry/issues/76)) - Use --and to match ALL tags, default matches ANY tag (previously --or) - Use `gooseberry config group ` and `gooseberry config kb directory ` directly instead of interactive usage @@ -192,6 +197,8 @@ Main commands: * `gooseberry move` - move annotations from one group to another (**move** not copy). Useful if you have a bunch of annotations scattered around and want to move them into one group for gooseberry. +[0.10.1]: https://github.com/out-of-cheese-error/gooseberry/compare/0.10.0...0.10.1 + [0.10.0]: https://github.com/out-of-cheese-error/gooseberry/compare/0.9.3...0.10.0 [0.9.3]: https://github.com/out-of-cheese-error/gooseberry/compare/0.9.2...0.9.3 diff --git a/Cargo.lock b/Cargo.lock index 9d1dd59..a72f7b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1153,7 +1153,7 @@ dependencies = [ [[package]] name = "gooseberry" -version = "0.10.0" +version = "0.10.1" dependencies = [ "assert_cmd", "bat", diff --git a/Cargo.toml b/Cargo.toml index c7c1bab..19c1320 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gooseberry" -version = "0.10.0" +version = "0.10.1" authors = ["Ninjani"] edition = "2021" description = "A command line utility to generate a knowledge base from Hypothesis annotations "