Bump up version

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

@ -2,7 +2,7 @@
All changes in this project will be noted in this file. All changes in this project will be noted in this file.
## Version 0.4.1 [2020-09-06] ## Version 0.4.2-alpha.1 [2020-09-06]
> No breaking changes > No breaking changes

6
Cargo.lock generated

@ -242,7 +242,7 @@ checksum = "a9f8082297d534141b30c8d39e9b1773713ab50fdbe4ff30f750d063b3bfd701"
[[package]] [[package]]
name = "libtdb" name = "libtdb"
version = "0.4.1" version = "0.4.2-alpha.1"
dependencies = [ dependencies = [
"bytes", "bytes",
"lazy_static", "lazy_static",
@ -564,7 +564,7 @@ dependencies = [
[[package]] [[package]]
name = "tdb" name = "tdb"
version = "0.4.1" version = "0.4.2-alpha.1"
dependencies = [ dependencies = [
"bincode", "bincode",
"bytes", "bytes",
@ -678,7 +678,7 @@ dependencies = [
[[package]] [[package]]
name = "tsh" name = "tsh"
version = "0.4.1" version = "0.4.2-alpha.1"
dependencies = [ dependencies = [
"bytes", "bytes",
"lazy_static", "lazy_static",

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

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

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

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

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

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

Loading…
Cancel
Save