Rollout v0.4.5

Also, the actiondoc for `MKSNAP` was updated and a changelog entry was
added for this release

Signed-off-by: Sayan Nandan <nandansayan@outlook.com>
next
Sayan Nandan 4 years ago
parent f142a41ed7
commit ac37769b7a
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.5 [2020-10-29]
> No breaking changes
This release adds support for automated snapshots, while also adding the `MKSNAP` action for doing the same remotely.
## Version 0.4.4 [2020-10-03]
> No breaking changes

6
Cargo.lock generated

@ -229,7 +229,7 @@ checksum = "a9f8082297d534141b30c8d39e9b1773713ab50fdbe4ff30f750d063b3bfd701"
[[package]]
name = "libtdb"
version = "0.4.5-alpha.2"
version = "0.4.5"
dependencies = [
"bytes 0.5.6",
"lazy_static",
@ -521,7 +521,7 @@ dependencies = [
[[package]]
name = "tdb"
version = "0.4.5-alpha.2"
version = "0.4.5"
dependencies = [
"bincode",
"bytes 0.6.0",
@ -642,7 +642,7 @@ dependencies = [
[[package]]
name = "tsh"
version = "0.4.5-alpha.2"
version = "0.4.5"
dependencies = [
"bytes 0.6.0",
"lazy_static",

@ -149,7 +149,7 @@
"since": "0.4.5",
"complexity": "O(n)",
"args": "MKSNAP",
"desc": "Create a snapshot",
"desc": "This action can be used to create a snapshot. Do note that this action **requires snapshotting to be enabled on the server side**, before it can create snapshots. For more information on enabling snapshots, read [this document](/snapshots)",
"return": "Okay if succeeded, otherwise it returns `err-snapshot-disabled` if snapshotting is disabled or `err-snapshot-busy` if a snapshotting operation is already in progress"
}
]

@ -1,6 +1,6 @@
[package]
name = "tsh"
version = "0.4.5-alpha.2"
version = "0.4.5"
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.5-alpha.2";
const MSG_WELCOME: &'static str = "TerrabaseDB v0.4.5";
#[tokio::main]
async fn main() {

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

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

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

@ -53,7 +53,7 @@ use jemallocator::Jemalloc;
static GLOBAL: Jemalloc = Jemalloc;
/// The version text
static MSG: &'static str = "TerrabaseDB v0.4.5-alpha.2 | https://github.com/terrabasedb/terrabase";
static MSG: &'static str = "TerrabaseDB v0.4.5 | https://github.com/terrabasedb/terrabase";
/// The terminal art for `!noart` configurations
static TEXT: &'static str = "
_______ _ _____ ____

Loading…
Cancel
Save