Bump version [skip ci]

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

@ -6,6 +6,13 @@ All changes in this project will be noted in this file.
### Additions
- `sys` action for system information and metrics:
- `info`: For static properties:
- `version`: Server version
- `protocol`: Protocol version string (Skyhash-x.y)
- `protover`: Protocol version float
- `metric`: For dynamic properties:
- `health`: System health
- `INSPECT KEYSPACE` without arguments to inspect the current keyspace
- `INSPECT TABLE` without arguments to inspect the current table
- `AUTH WHOAMI` returns the AuthID of the currently logged in user

14
Cargo.lock generated

@ -667,11 +667,11 @@ checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f"
[[package]]
name = "libsky"
version = "0.7.4"
version = "0.7.5"
[[package]]
name = "libstress"
version = "0.7.4"
version = "0.7.5"
dependencies = [
"crossbeam-channel",
"log",
@ -1270,7 +1270,7 @@ dependencies = [
[[package]]
name = "sky-bench"
version = "0.7.4"
version = "0.7.5"
dependencies = [
"clap",
"devtimer",
@ -1283,7 +1283,7 @@ dependencies = [
[[package]]
name = "sky-migrate"
version = "0.7.4"
version = "0.7.5"
dependencies = [
"bincode",
"clap",
@ -1294,7 +1294,7 @@ dependencies = [
[[package]]
name = "sky_macros"
version = "0.7.4"
version = "0.7.5"
dependencies = [
"proc-macro2",
"quote",
@ -1304,7 +1304,7 @@ dependencies = [
[[package]]
name = "skyd"
version = "0.7.4"
version = "0.7.5"
dependencies = [
"ahash",
"base64",
@ -1337,7 +1337,7 @@ dependencies = [
[[package]]
name = "skysh"
version = "0.7.4"
version = "0.7.5"
dependencies = [
"clap",
"crossterm",

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

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

@ -2,7 +2,7 @@
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2021"
name = "libsky"
version = "0.7.4"
version = "0.7.5"
# 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.4"
version = "0.7.5"
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.4"
version = "0.7.5"
[dependencies]
# internal deps

@ -1,5 +1,5 @@
name: Skytable Server
version: 0.7.4
version: 0.7.5
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.4"
version = "0.7.5"
# 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.7.4
version: 0.7.5
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.4"
version = "0.7.5"
# 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.4"
version = "0.7.5"
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.7.4)
The Skytable migration tool allows users coming from older versions (>=0.7.5)
to upgrade their datasets to the latest Skytable version. This tool currently
supports versions >= 0.7.4 and upgrading it to 0.7.0. To upgrade, on needs
supports versions >= 0.7.5 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