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. All changes in this project will be noted in this file.
## Unreleased ## Version 0.7.4
### Additions ### Additions

14
Cargo.lock generated

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

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

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

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

@ -49,7 +49,10 @@ pub fn install_deps() -> HarnessResult<()> {
return Ok(()); 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)?; util::handle_child("install system deps", install)?;
Ok(()) Ok(())

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

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

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

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

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

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

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

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

@ -2,9 +2,9 @@ name: Skytable Migration Tool
version: 0.7.0 version: 0.7.0
author: Sayan N. <ohsayan@outlook.com> author: Sayan N. <ohsayan@outlook.com>
about: | 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 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: to simply run:
sky-migrate --prevdir <lastpath> --new <host>:<port> sky-migrate --prevdir <lastpath> --new <host>:<port>
Where `<lastpath>` is the path to the last installation's data directory and Where `<lastpath>` is the path to the last installation's data directory and

Loading…
Cancel
Save