Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update hypothesis API version #110

Merged
merged 2 commits into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <group_id>` and `gooseberry config kb directory <directory_path>` directly instead of interactive usage
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 "
Expand All @@ -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
Expand Down
Loading