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.
## Unreleased
## Version 0.7.2
### Additions
- `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
is connected to
- `skysh`:

14
Cargo.lock generated

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

@ -1,8 +1,8 @@
[package]
name = "skysh"
version = "0.7.1"
version = "0.7.2"
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

@ -1,8 +1,8 @@
[package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"
edition = "2021"
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

@ -1,8 +1,8 @@
[package]
name = "libstress"
version = "0.7.1"
version = "0.7.2"
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

@ -1,9 +1,9 @@
[package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
build = "build.rs"
edition = "2018"
edition = "2021"
name = "skyd"
version = "0.7.1"
version = "0.7.2"
[dependencies]
# internal deps

@ -1,8 +1,8 @@
[package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"
edition = "2021"
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

@ -1,8 +1,8 @@
[package]
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"
edition = "2021"
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

@ -1,8 +1,8 @@
[package]
name = "sky-migrate"
version = "0.7.1"
version = "0.7.2"
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

@ -2,7 +2,7 @@
name = "stress-test"
version = "0.1.0"
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

Loading…
Cancel
Save