Skip to content

Commit de6f88a

Browse files
committed
build(version): bump
1 parent f4cc5be commit de6f88a

File tree

3 files changed

+131
-76
lines changed

3 files changed

+131
-76
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres
66
to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [0.7.0] - 2021-03-26
99

1010
### Fixed
1111

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

20+
### Changed
21+
22+
* Updated dependencies
23+
2024
## [0.6.0] - 2021-03-10
2125

2226
### Added
@@ -111,6 +115,8 @@ Main commands:
111115
* `gooseberry move` - move annotations from one group to another (**move** not copy). Useful if you have a bunch of annotations scattered around and
112116
want to move them into one group for gooseberry.
113117

118+
[0.7.0]: https://github.com/out-of-cheese-error/gooseberry/compare/0.6.0...0.7.0
119+
114120
[0.6.0]: https://github.com/out-of-cheese-error/gooseberry/compare/0.5.2...0.6.0
115121

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

Cargo.lock

Lines changed: 117 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gooseberry"
3-
version = "0.6.0"
3+
version = "0.7.0"
44
authors = ["Ninjani"]
55
edition = "2018"
66
description = "A command line utility to generate a knowledge base from Hypothesis annotations "
@@ -14,7 +14,7 @@ include = ["src/**/*", "README.md"]
1414
[dependencies]
1515
# Hypothesis
1616
hypothesis = { version = "0.9.1", default-features = false }
17-
tokio = { version = "1.3.0", features = ["macros"] }
17+
tokio = { version = "1.4.0", features = ["macros"] }
1818

1919
# To extract the base URI
2020
url = "2.2.1"
@@ -35,21 +35,21 @@ color-eyre = "0.5.10"
3535
thiserror = "1.0.24"
3636

3737
# Serializing
38-
serde = "1.0.123"
38+
serde = "1.0.125"
3939
serde_json = "1.0.64"
40-
serde_derive = "1.0.123"
40+
serde_derive = "1.0.125"
4141
bincode = "1.3.2"
4242

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

4747
# Fuzzy search
4848
skim = "0.9.4"
4949

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

5454
# Indicator bar
5555
indicatif = "0.15.0"

0 commit comments

Comments
 (0)