Skip to content

Commit

Permalink
Bump version to 0.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsayan committed Mar 21, 2022
1 parent b005ca5 commit b057de9
Show file tree
Hide file tree
Showing 15 changed files with 25 additions and 21 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -2,7 +2,7 @@

All changes in this project will be noted in this file.

## Unreleased
## Version 0.7.4

### Additions

Expand Down
14 changes: 7 additions & 7 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions Cargo.toml
Expand Up @@ -15,3 +15,4 @@ members = [
opt-level = 3
codegen-units = 1
lto = "fat"
strip = "debuginfo"
2 changes: 1 addition & 1 deletion cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "skysh"
version = "0.7.3"
version = "0.7.4"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion cli/src/cli.yml
Expand Up @@ -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:
Expand Down
5 changes: 4 additions & 1 deletion harness/src/presetup.rs
Expand Up @@ -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(())
Expand Down
2 changes: 1 addition & 1 deletion libsky/Cargo.toml
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion libstress/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "libstress"
version = "0.7.3"
version = "0.7.4"
authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion server/src/cli.yml
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion sky-bench/Cargo.toml
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion sky-bench/src/cli.yml
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion sky-macros/Cargo.toml
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion sky-migrate/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "sky-migrate"
version = "0.7.3"
version = "0.7.4"
authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2021"

Expand Down
4 changes: 2 additions & 2 deletions sky-migrate/src/cli.yml
Expand Up @@ -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
Expand Down

0 comments on commit b057de9

Please sign in to comment.