diff --git a/CHANGES.md b/CHANGES.md index 9eeed73..dc2d4dd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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) diff --git a/Cargo.lock b/Cargo.lock index bd8790c..c485e25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -547,7 +547,7 @@ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" [[package]] name = "bayard" -version = "0.8.6" +version = "0.8.7" dependencies = [ "bayard-client", "bayard-common", @@ -566,7 +566,7 @@ dependencies = [ [[package]] name = "bayard-cli" -version = "0.8.6" +version = "0.8.7" dependencies = [ "bayard-client", "bayard-common", @@ -576,7 +576,7 @@ dependencies = [ [[package]] name = "bayard-client" -version = "0.8.6" +version = "0.8.7" dependencies = [ "bayard-proto", "bayard-server", @@ -591,7 +591,7 @@ dependencies = [ [[package]] name = "bayard-common" -version = "0.8.6" +version = "0.8.7" dependencies = [ "crossbeam-channel 0.4.3", "ctrlc", @@ -613,7 +613,7 @@ dependencies = [ [[package]] name = "bayard-rest" -version = "0.8.6" +version = "0.8.7" dependencies = [ "actix", "actix-cors", @@ -635,7 +635,7 @@ dependencies = [ [[package]] name = "bayard-server" -version = "0.8.6" +version = "0.8.7" dependencies = [ "async-std", "bayard-proto", diff --git a/bayard-cli/Cargo.toml b/bayard-cli/Cargo.toml index 4db46ff..cc2c97c 100644 --- a/bayard-cli/Cargo.toml +++ b/bayard-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-cli" -version = "0.8.6" +version = "0.8.7" authors = ["Minoru Osuka "] edition = "2018" description = "Command line interface for Bayard." @@ -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" } diff --git a/bayard-client/Cargo.toml b/bayard-client/Cargo.toml index 4a15031..820a599 100644 --- a/bayard-client/Cargo.toml +++ b/bayard-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-client" -version = "0.8.6" +version = "0.8.7" authors = ["Minoru Osuka "] edition = "2018" description = "Client library for Bayard." @@ -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" } diff --git a/bayard-common/Cargo.toml b/bayard-common/Cargo.toml index 0795924..62f6648 100644 --- a/bayard-common/Cargo.toml +++ b/bayard-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-common" -version = "0.8.6" +version = "0.8.7" authors = ["Minoru Osuka "] edition = "2018" description = "Common library for Bayard." diff --git a/bayard-rest/Cargo.toml b/bayard-rest/Cargo.toml index 2c584aa..86f298f 100644 --- a/bayard-rest/Cargo.toml +++ b/bayard-rest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-rest" -version = "0.8.6" +version = "0.8.7" authors = ["Minoru Osuka "] edition = "2018" description = "REST API server for Bayard." @@ -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" } diff --git a/bayard-server/Cargo.toml b/bayard-server/Cargo.toml index e76fffd..b323ac2 100644 --- a/bayard-server/Cargo.toml +++ b/bayard-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard-server" -version = "0.8.6" +version = "0.8.7" authors = ["MinoruOsuka "] edition = "2018" description = "Bayard is a distributed search server." diff --git a/bayard/Cargo.toml b/bayard/Cargo.toml index 6b15089..9b4233e 100644 --- a/bayard/Cargo.toml +++ b/bayard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bayard" -version = "0.8.6" +version = "0.8.7" authors = ["Minoru Osuka "] edition = "2018" description = "A distributed search server." @@ -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" }