Rollout v0.4.4

next
Sayan Nandan 4 years ago
parent 8e429c17f4
commit 6ead5ebe6c
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.4 [2020-10-03]
> No breaking changes
This release adds the following actions: `KEYLEN` and `USET`
## Version 0.4.3 [2020-09-25]
> No breaking changes
@ -37,7 +43,7 @@ Fixes:
### Migrating existing clients
The Terrapipe protocol was revised and promoted to 1.0. This will cause all existing client implementations to break, since the protocol has changed fundamentally. The clients have to implement the [latest spec](https://git.io/JJZ8Z).
The Terrapipe protocol was revised and promoted to 1.0. This will cause all existing client implementations to break, since the protocol has changed fundamentally. The clients have to implement the [latest spec](https://terrabasedb.github.io/docs/Protocols/terrapipe).
## Version 0.3.2 [2020-08-07]
@ -73,7 +79,7 @@ This release implements the latest version of the Terrapipe protocol.
### Migrating existing clients
All clients have to reimplement the Terrapipe protocol to match the [latest spec](https://git.io/JJZ8Z).
All clients have to reimplement the Terrapipe protocol to match the [latest spec](https://terrabasedb.github.io/docs/Protocols/unsupported-tp).
## Version 0.1.0 [2020-07-17]

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

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

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

@ -20,7 +20,7 @@
#
name: TerrabaseDB Server
version: 0.4.3
version: 0.4.4
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.3 | https://github.com/terrabasedb/terrabase";
static MSG: &'static str = "TerrabaseDB v0.4.4 | https://github.com/terrabasedb/terrabase";
static TEXT: &'static str = "
_______ _ _____ ____
|__ __| | | | __ \\ | _ \\

Loading…
Cancel
Save