Skip to content

Commit

Permalink
Bump up version to 0.8.7 (#128)
Browse files Browse the repository at this point in the history
* Bump up version to 0.8.7

* Update CHANGES.md
  • Loading branch information
mosuka authored Feb 22, 2021
1 parent c41f2cb commit c0248c2
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 21 deletions.
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## Unreleased
## 0.8.7 (2021-02-22)
- Bump up version to 0.8.7 #128 @mosuka
- Fix a bug that detect a wrong node ID #127 @mosuka

## 0.8.6 (2021-02-22)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions bayard-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bayard-cli"
version = "0.8.6"
version = "0.8.7"
authors = ["Minoru Osuka <[email protected]>"]
edition = "2018"
description = "Command line interface for Bayard."
Expand All @@ -20,5 +20,5 @@ path = "src/main.rs"
clap = "2.33"
serde_json = "1.0"

bayard-client = { version = "0.8.6", path = "../bayard-client" }
bayard-common = { version = "0.8.6", path = "../bayard-common" }
bayard-client = { version = "0.8.7", path = "../bayard-client" }
bayard-common = { version = "0.8.7", path = "../bayard-common" }
4 changes: 2 additions & 2 deletions bayard-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bayard-client"
version = "0.8.6"
version = "0.8.7"
authors = ["Minoru Osuka <[email protected]>"]
edition = "2018"
description = "Client library for Bayard."
Expand All @@ -23,4 +23,4 @@ serde_json = "1.0"

bayard-proto = "0.8"

bayard-server = { version = "0.8.6", path = "../bayard-server" }
bayard-server = { version = "0.8.7", path = "../bayard-server" }
2 changes: 1 addition & 1 deletion bayard-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bayard-common"
version = "0.8.6"
version = "0.8.7"
authors = ["Minoru Osuka <[email protected]>"]
edition = "2018"
description = "Common library for Bayard."
Expand Down
6 changes: 3 additions & 3 deletions bayard-rest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bayard-rest"
version = "0.8.6"
version = "0.8.7"
authors = ["Minoru Osuka <[email protected]>"]
edition = "2018"
description = "REST API server for Bayard."
Expand Down Expand Up @@ -32,5 +32,5 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_qs = "0.6"

bayard-client = { version = "0.8.6", path = "../bayard-client" }
bayard-common = { version = "0.8.6", path = "../bayard-common" }
bayard-client = { version = "0.8.7", path = "../bayard-client" }
bayard-common = { version = "0.8.7", path = "../bayard-common" }
2 changes: 1 addition & 1 deletion bayard-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bayard-server"
version = "0.8.6"
version = "0.8.7"
authors = ["MinoruOsuka <[email protected]>"]
edition = "2018"
description = "Bayard is a distributed search server."
Expand Down
8 changes: 4 additions & 4 deletions bayard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bayard"
version = "0.8.6"
version = "0.8.7"
authors = ["Minoru Osuka <[email protected]>"]
edition = "2018"
description = "A distributed search server."
Expand Down Expand Up @@ -29,6 +29,6 @@ tokio = { version = "0.2", features = ["macros"] }

bayard-proto = "0.8"

bayard-client = { version = "0.8.6", path = "../bayard-client" }
bayard-common = { version = "0.8.6", path = "../bayard-common" }
bayard-server = { version = "0.8.6", path = "../bayard-server" }
bayard-client = { version = "0.8.7", path = "../bayard-client" }
bayard-common = { version = "0.8.7", path = "../bayard-common" }
bayard-server = { version = "0.8.7", path = "../bayard-server" }

0 comments on commit c0248c2

Please sign in to comment.