Rollout v0.4.2

next
Sayan Nandan 4 years ago
parent c0ca6869cd
commit 1ac8dd896a
No known key found for this signature in database
GPG Key ID: C31EFD7DDA12AEE0

@ -2,6 +2,12 @@
All changes in this project will be noted in this file.
## Version 0.4.2 [2020-09-19]
> No breaking changes
This release adds `BGSAVE` for automated background saving (see [#11](https://github.com/terrabasedb/terrabasedb/issues/21))
## Version 0.4.1 [2020-09-06]
> No breaking changes

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

@ -22,7 +22,7 @@
mod argparse;
mod protocol;
use tokio;
const MSG_WELCOME: &'static str = "TerrabaseDB v0.4.2-alpha.1";
const MSG_WELCOME: &'static str = "TerrabaseDB v0.4.2";
#[tokio::main]
async fn main() {

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

@ -1,6 +1,6 @@
[package]
name = "tdb"
version = "0.4.2-alpha.1"
version = "0.4.2"
authors = ["Sayan Nandan <ohsayan@outlook.com>"]
edition = "2018"
@ -18,7 +18,7 @@ serde = {version = "1.0.115", features= ["derive"]}
toml = "0.5.6"
clap = {version = "2.33.3", features=["yaml"]}
env_logger = "0.7.1"
log = "0.4.2-alpha.11"
log = "0.4.21"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
jemallocator = "0.3.2"

@ -20,7 +20,7 @@
#
name: TerrabaseDB Server
version: 0.4.2-alpha.1
version: 0.4.2
author: Sayan N. <ohsayan@outlook.com>
about: The TerrabaseDB Database server
args:

@ -44,7 +44,7 @@ use jemallocator::Jemalloc;
#[global_allocator]
static GLOBAL: Jemalloc = Jemalloc;
static MSG: &'static str = "TerrabaseDB v0.4.2-alpha.1 | https://github.com/terrabasedb/terrabase";
static MSG: &'static str = "TerrabaseDB v0.4.2 | https://github.com/terrabasedb/terrabase";
static TEXT: &'static str = "
_______ _ _____ ____
|__ __| | | | __ \\ | _ \\

Loading…
Cancel
Save