Skip to content

Commit

Permalink
build(version): bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjani committed Mar 26, 2021
1 parent f4cc5be commit de6f88a
Show file tree
Hide file tree
Showing 3 changed files with 131 additions and 76 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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).

## Unreleased
## [0.7.0] - 2021-03-26

### Fixed

Expand All @@ -17,6 +17,10 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
Issue [#69](https://github.com/out-of-cheese-error/gooseberry/issues/69))
* `gooseberry uri` and `Shift-Up` option to `gooseberry search` that prints out the set of URIs associated with a list of selected annotations.

### Changed

* Updated dependencies

## [0.6.0] - 2021-03-10

### Added
Expand Down Expand Up @@ -111,6 +115,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.7.0]: https://github.com/out-of-cheese-error/gooseberry/compare/0.6.0...0.7.0

[0.6.0]: https://github.com/out-of-cheese-error/gooseberry/compare/0.5.2...0.6.0

[0.5.2]: https://github.com/out-of-cheese-error/gooseberry/compare/0.5.1...0.5.2
Expand Down
185 changes: 117 additions & 68 deletions Cargo.lock

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

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gooseberry"
version = "0.6.0"
version = "0.7.0"
authors = ["Ninjani"]
edition = "2018"
description = "A command line utility to generate a knowledge base from Hypothesis annotations "
Expand All @@ -14,7 +14,7 @@ include = ["src/**/*", "README.md"]
[dependencies]
# Hypothesis
hypothesis = { version = "0.9.1", default-features = false }
tokio = { version = "1.3.0", features = ["macros"] }
tokio = { version = "1.4.0", features = ["macros"] }

# To extract the base URI
url = "2.2.1"
Expand All @@ -35,21 +35,21 @@ color-eyre = "0.5.10"
thiserror = "1.0.24"

# Serializing
serde = "1.0.123"
serde = "1.0.125"
serde_json = "1.0.64"
serde_derive = "1.0.123"
serde_derive = "1.0.125"
bincode = "1.3.2"

# Parsing and manipulating dates
chrono = { version = "0.4.19", features = ["serde"] }
chrono-english = "0.1.4"
chrono-english = "0.1.5"

# Fuzzy search
skim = "0.9.4"

# Console related
dialoguer = "0.7.1"
bat = { version = "0.17.1", default-features = false, features = ["regex-fancy"] }
dialoguer = "0.8.0"
bat = { version = "0.18.0", default-features = false, features = ["regex-fancy"] }

# Indicator bar
indicatif = "0.15.0"
Expand Down

0 comments on commit de6f88a

Please sign in to comment.