From 93d1004c80cb5d1bb4caceece7fc8ca88a7f7462 Mon Sep 17 00:00:00 2001 From: Sayan Nandan Date: Sat, 13 Nov 2021 21:58:24 -0800 Subject: [PATCH] Add changelog and switch to using rustc edition 2021 --- CHANGELOG.md | 7 +++++-- Cargo.lock | 14 +++++++------- cli/Cargo.toml | 4 ++-- libsky/Cargo.toml | 4 ++-- libstress/Cargo.toml | 4 ++-- server/Cargo.toml | 4 ++-- sky-bench/Cargo.toml | 4 ++-- sky-macros/Cargo.toml | 4 ++-- sky-migrate/Cargo.toml | 4 ++-- stress-test/Cargo.toml | 2 +- 10 files changed, 27 insertions(+), 24 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cb0bf03..4b135f69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`: diff --git a/Cargo.lock b/Cargo.lock index 6e92e4f1..0f57222c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index e60a8891..9d6040ce 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "skysh" -version = "0.7.1" +version = "0.7.2" authors = ["Sayan Nandan "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/libsky/Cargo.toml b/libsky/Cargo.toml index 9dcac846..475df74a 100644 --- a/libsky/Cargo.toml +++ b/libsky/Cargo.toml @@ -1,8 +1,8 @@ [package] authors = ["Sayan Nandan "] -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 diff --git a/libstress/Cargo.toml b/libstress/Cargo.toml index 59dc4050..a944a314 100644 --- a/libstress/Cargo.toml +++ b/libstress/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "libstress" -version = "0.7.1" +version = "0.7.2" authors = ["Sayan Nandan "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/server/Cargo.toml b/server/Cargo.toml index 3f7d8437..1e154616 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,9 +1,9 @@ [package] authors = ["Sayan Nandan "] build = "build.rs" -edition = "2018" +edition = "2021" name = "skyd" -version = "0.7.1" +version = "0.7.2" [dependencies] # internal deps diff --git a/sky-bench/Cargo.toml b/sky-bench/Cargo.toml index e19b6bfe..6919a9c5 100644 --- a/sky-bench/Cargo.toml +++ b/sky-bench/Cargo.toml @@ -1,8 +1,8 @@ [package] authors = ["Sayan Nandan "] -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 diff --git a/sky-macros/Cargo.toml b/sky-macros/Cargo.toml index 57e796e1..d5d8ddf5 100644 --- a/sky-macros/Cargo.toml +++ b/sky-macros/Cargo.toml @@ -1,8 +1,8 @@ [package] authors = ["Sayan Nandan "] -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 diff --git a/sky-migrate/Cargo.toml b/sky-migrate/Cargo.toml index 2031dc98..ea9fb97a 100644 --- a/sky-migrate/Cargo.toml +++ b/sky-migrate/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "sky-migrate" -version = "0.7.1" +version = "0.7.2" authors = ["Sayan Nandan "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/stress-test/Cargo.toml b/stress-test/Cargo.toml index 06df0eed..4ddf26a2 100644 --- a/stress-test/Cargo.toml +++ b/stress-test/Cargo.toml @@ -2,7 +2,7 @@ name = "stress-test" version = "0.1.0" authors = ["Sayan Nandan "] -edition = "2018" +edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html