Add changelog and switch to using rustc edition 2021

next
Sayan Nandan 3 years ago
parent f48e565065
commit 93d1004c80
No known key found for this signature in database
GPG Key ID: 18E77EBDCADD5AD6

@ -2,12 +2,15 @@
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.2
### Additions ### Additions
- `skyd`: - `skyd`:
- Pipelined queries are now supported - Pipelined queries are now supported:
- Saves bandwidth
- Reduces latency
- The new non-null typed array type was added
- The `whereami` action was added which lets one find out which entity the current connection - The `whereami` action was added which lets one find out which entity the current connection
is connected to is connected to
- `skysh`: - `skysh`:

14
Cargo.lock generated

@ -400,14 +400,14 @@ checksum = "fbe5e23404da5b4f555ef85ebed98fb4083e55a00c317800bc2a50ede9f3d219"
[[package]] [[package]]
name = "libsky" name = "libsky"
version = "0.7.1" version = "0.7.2"
dependencies = [ dependencies = [
"termcolor", "termcolor",
] ]
[[package]] [[package]]
name = "libstress" name = "libstress"
version = "0.7.1" version = "0.7.2"
dependencies = [ dependencies = [
"crossbeam-channel", "crossbeam-channel",
"log", "log",
@ -851,7 +851,7 @@ dependencies = [
[[package]] [[package]]
name = "sky-bench" name = "sky-bench"
version = "0.7.1" version = "0.7.2"
dependencies = [ dependencies = [
"clap", "clap",
"devtimer", "devtimer",
@ -864,7 +864,7 @@ dependencies = [
[[package]] [[package]]
name = "sky-migrate" name = "sky-migrate"
version = "0.7.1" version = "0.7.2"
dependencies = [ dependencies = [
"bincode", "bincode",
"clap", "clap",
@ -875,7 +875,7 @@ dependencies = [
[[package]] [[package]]
name = "sky_macros" name = "sky_macros"
version = "0.7.1" version = "0.7.2"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -885,7 +885,7 @@ dependencies = [
[[package]] [[package]]
name = "skyd" name = "skyd"
version = "0.7.1" version = "0.7.2"
dependencies = [ dependencies = [
"ahash", "ahash",
"bincode", "bincode",
@ -916,7 +916,7 @@ dependencies = [
[[package]] [[package]]
name = "skysh" name = "skysh"
version = "0.7.1" version = "0.7.2"
dependencies = [ dependencies = [
"clap", "clap",
"crossterm", "crossterm",

@ -1,8 +1,8 @@
[package] [package]
name = "skysh" name = "skysh"
version = "0.7.1" version = "0.7.2"
authors = ["Sayan Nandan <ohsayan@outlook.com>"] authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018" edition = "2021"
# 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,8 +1,8 @@
[package] [package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"] authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018" edition = "2021"
name = "libsky" name = "libsky"
version = "0.7.1" version = "0.7.2"
# 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,8 +1,8 @@
[package] [package]
name = "libstress" name = "libstress"
version = "0.7.1" version = "0.7.2"
authors = ["Sayan Nandan <nandansayan@outlook.com>"] authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2018" edition = "2021"
# 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,9 +1,9 @@
[package] [package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"] authors = ["Sayan Nandan <ohsayan@outlook.com>"]
build = "build.rs" build = "build.rs"
edition = "2018" edition = "2021"
name = "skyd" name = "skyd"
version = "0.7.1" version = "0.7.2"
[dependencies] [dependencies]
# internal deps # internal deps

@ -1,8 +1,8 @@
[package] [package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"] authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018" edition = "2021"
name = "sky-bench" name = "sky-bench"
version = "0.7.1" version = "0.7.2"
# 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,8 +1,8 @@
[package] [package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"] authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018" edition = "2021"
name = "sky_macros" name = "sky_macros"
version = "0.7.1" version = "0.7.2"
# 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,8 +1,8 @@
[package] [package]
name = "sky-migrate" name = "sky-migrate"
version = "0.7.1" version = "0.7.2"
authors = ["Sayan Nandan <nandansayan@outlook.com>"] authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2018" edition = "2021"
# 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

@ -2,7 +2,7 @@
name = "stress-test" name = "stress-test"
version = "0.1.0" version = "0.1.0"
authors = ["Sayan Nandan <nandansayan@outlook.com>"] authors = ["Sayan Nandan <nandansayan@outlook.com>"]
edition = "2018" edition = "2021"
# 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

Loading…
Cancel
Save