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 ### 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 KEYSPACE` without arguments to inspect the current keyspace
- `INSPECT TABLE` without arguments to inspect the current table - `INSPECT TABLE` without arguments to inspect the current table
- `AUTH WHOAMI` returns the AuthID of the currently logged in user - `AUTH WHOAMI` returns the AuthID of the currently logged in user

14
Cargo.lock generated

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

@ -1,6 +1,6 @@
[package] [package]
name = "skysh" name = "skysh"
version = "0.7.4" version = "0.7.5"
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.7.4 version: 0.7.5
author: Sayan N. <ohsayan@outlook.com> author: Sayan N. <ohsayan@outlook.com>
about: The Skytable Shell (skysh) about: The Skytable Shell (skysh)
args: args:

@ -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.4" version = "0.7.5"
# 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.4" version = "0.7.5"
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.4" version = "0.7.5"
[dependencies] [dependencies]
# internal deps # internal deps

@ -1,5 +1,5 @@
name: Skytable Server name: Skytable Server
version: 0.7.4 version: 0.7.5
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.4" version = "0.7.5"
# 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.7.4 version: 0.7.5
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.4" version = "0.7.5"
# 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.4" version = "0.7.5"
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.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 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: 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