Bump version to 0.7.4

next
Sayan Nandan 3 years ago
parent b005ca57c5
commit b057de94e6
No known key found for this signature in database
GPG Key ID: 8BC07A0A4D41DD52

@ -2,7 +2,7 @@
All changes in this project will be noted in this file.
## Unreleased
## Version 0.7.4
### Additions

14
Cargo.lock generated

@ -583,14 +583,14 @@ checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f"
[[package]]
name = "libsky"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"termcolor",
]
[[package]]
name = "libstress"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"crossbeam-channel",
"log",
@ -1129,7 +1129,7 @@ dependencies = [
[[package]]
name = "sky-bench"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"clap",
"devtimer",
@ -1142,7 +1142,7 @@ dependencies = [
[[package]]
name = "sky-migrate"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"bincode",
"clap",
@ -1153,7 +1153,7 @@ dependencies = [
[[package]]
name = "sky_macros"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"proc-macro2",
"quote",
@ -1163,7 +1163,7 @@ dependencies = [
[[package]]
name = "skyd"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"ahash",
"base64",
@ -1196,7 +1196,7 @@ dependencies = [
[[package]]
name = "skysh"
version = "0.7.3"
version = "0.7.4"
dependencies = [
"clap",
"crossterm",

@ -15,3 +15,4 @@ members = [
opt-level = 3
codegen-units = 1
lto = "fat"
strip = "debuginfo"

@ -1,6 +1,6 @@
[package]
name = "skysh"
version = "0.7.3"
version = "0.7.4"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"

@ -20,7 +20,7 @@
#
name: Skytable Shell
version: 0.6.0
version: 0.7.4
author: Sayan N. <ohsayan@outlook.com>
about: The Skytable Shell (skysh)
args:

@ -49,7 +49,10 @@ pub fn install_deps() -> HarnessResult<()> {
return Ok(());
}
},
None => return Ok(()),
None => {
warn!("No target specified so not attempting to install any dependencies");
return Ok(());
}
};
util::handle_child("install system deps", install)?;
Ok(())

@ -2,7 +2,7 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
name = "libsky"
version = "0.7.3"
version = "0.7.4"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -1,6 +1,6 @@
[package]
name = "libstress"
version = "0.7.3"
version = "0.7.4"
authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2021"

@ -3,7 +3,7 @@ authors = ["Sayan Nandan <ohsayan@outlook.com>"]
build = "build.rs"
edition = "2021"
name = "skyd"
version = "0.7.3"
version = "0.7.4"
[dependencies]
# internal deps

@ -1,5 +1,5 @@
name: Skytable Server
version: 0.6.0
version: 0.7.4
author: Sayan N. <ohsayan@outlook.com>
about: The Skytable Database server
args:

@ -2,7 +2,7 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
name = "sky-bench"
version = "0.7.3"
version = "0.7.4"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -20,7 +20,7 @@
#
name: Skytable Benchmark Tool
version: 0.6.0
version: 0.7.4
author: Sayan N. <ohsayan@outlook.com>
about: |
The Skytable benchmark tool can be used to benchmark Skytable installations.

@ -2,7 +2,7 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
name = "sky_macros"
version = "0.7.3"
version = "0.7.4"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

@ -1,6 +1,6 @@
[package]
name = "sky-migrate"
version = "0.7.3"
version = "0.7.4"
authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2021"

@ -2,9 +2,9 @@ name: Skytable Migration Tool
version: 0.7.0
author: Sayan N. <ohsayan@outlook.com>
about: |
The Skytable migration tool allows users coming from older versions (>=0.6.0)
The Skytable migration tool allows users coming from older versions (>=0.7.4)
to upgrade their datasets to the latest Skytable version. This tool currently
supports versions >= 0.6.0 and upgrading it to 0.7.0. To upgrade, on needs
supports versions >= 0.7.4 and upgrading it to 0.7.0. To upgrade, on needs
to simply run:
sky-migrate --prevdir <lastpath> --new <host>:<port>
Where `<lastpath>` is the path to the last installation's data directory and

Loading…
Cancel
Save