Bump up version and add changelog entry

next
Sayan Nandan 3 years ago
parent 63708d58f4
commit d18631680c

@ -2,6 +2,20 @@
All changes in this project will be noted in this file.
## Version 0.5.2 [2021-05-07]
> No breaking changes
* `sky-bench` is less agressive and runs sanity test before benchmarking
* `skyd` now locks the data file (the `data.bin` file)
* The data directory structure has been changed (see #144) (all files are now stored in ./data/*)
* Fixed 'Connection Forcibly Closed' errors on Windows (see #110)
* Add support for line-editing and keyboard shortcuts on `skysh` (see #142)
* Fixed problems while parsing snapshots in the snapshot directory (see #144)
* The old data directory structure has been deprecated (see #144)
* Official support for 32-bit platforms (see #139)
## Version 0.5.1 [2021-03-17]
> No breaking changes

10
Cargo.lock generated

@ -367,7 +367,7 @@ checksum = "18794a8ad5b29321f790b55d93dfba91e125cb1a9edbd4f8e3150acc771c1a5e"
[[package]]
name = "libsky"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"bytes",
"lazy_static",
@ -797,7 +797,7 @@ dependencies = [
[[package]]
name = "sky-bench"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"clap",
"devtimer",
@ -809,7 +809,7 @@ dependencies = [
[[package]]
name = "sky_macros"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"proc-macro2",
"quote",
@ -819,7 +819,7 @@ dependencies = [
[[package]]
name = "skyd"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"bincode",
"bytes",
@ -847,7 +847,7 @@ dependencies = [
[[package]]
name = "skysh"
version = "0.5.1"
version = "0.5.2"
dependencies = [
"bytes",
"clap",

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

@ -36,7 +36,7 @@ use readline::config::Configurer;
use readline::{error::ReadlineError, Editor};
use rustyline as readline;
use std::process;
const MSG_WELCOME: &'static str = "Skytable v0.5.1";
const MSG_WELCOME: &'static str = "Skytable v0.5.2";
#[macro_use]
macro_rules! close_con {

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

@ -1,6 +1,6 @@
[package]
name = "libsky"
version = "0.5.1"
version = "0.5.2"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"

@ -1,6 +1,6 @@
[package]
name = "skyd"
version = "0.5.1"
version = "0.5.2"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"
build = "build.rs"

@ -1,5 +1,5 @@
name: Skytable Server
version: 0.5.1
version: 0.5.2
author: Sayan N. <ohsayan@outlook.com>
about: The Skytable Database server
args:

@ -48,7 +48,7 @@ pub struct Config {
/// The `server` key
server: ConfigKeyServer,
/// The `bgsave` key
/* TODO(@ohsayan): As of now, we will keep this optional, but post 0.5.1,
/* TODO(@ohsayan): As of now, we will keep this optional, but post 0.5.2,
* we will make it compulsory (so that we don't break semver)
* See the link below for more details:
* https://github.com/Skytable/Skytable/issues/21#issuecomment-693217709

@ -62,7 +62,7 @@ use jemallocator::Jemalloc;
static GLOBAL: Jemalloc = Jemalloc;
/// The version text
static MSG: &'static str = "Skytable v0.5.1 | https://github.com/skytable/skytable\n";
static MSG: &'static str = "Skytable v0.5.2 | https://github.com/skytable/skytable\n";
/// The terminal art for `!noart` configurations
static TEXT: &'static str = "███████ ██  ██ ██  ██ ████████  █████  ██████  ██  ███████ \n████ ██   ██  ██     ██    ██   ██ ██   ██ ██  ██      \n████████████  ████   ██  ███████ ██████  ██  █████  \n██████  ██   ██  ██   ██ ██   ██ ██  ██     \n█████████ ██  ██  ██  ██  ██ ██████  ███████ ███████ \n \n ";

@ -1,6 +1,6 @@
[package]
name = "sky-bench"
version = "0.5.1"
version = "0.5.2"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"

@ -20,7 +20,7 @@
#
name: Skytable Benchmark Tool
version: 0.5.1
version: 0.5.2
author: Sayan N. <ohsayan@outlook.com>
about: |
The Skytable benchmark tool can be used to benchmark Skytable installations.

@ -1,6 +1,6 @@
[package]
name = "sky_macros"
version = "0.5.1"
version = "0.5.2"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"

Loading…
Cancel
Save