Bump version number

This commit is contained in:
Floris Bruynooghe
2019-06-30 21:52:48 +02:00
parent f89bfb1612
commit e57af118ec
4 changed files with 6 additions and 6 deletions

6
Cargo.lock generated
View File

@@ -450,7 +450,7 @@ dependencies = [
[[package]]
name = "deltachat"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
dependencies = [
"base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)",
"cc 1.0.37 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -486,9 +486,9 @@ dependencies = [
[[package]]
name = "deltachat_ffi"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
dependencies = [
"deltachat 1.0.0-alpha.1",
"deltachat 1.0.0-alpha.2",
"human-panic 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.2.58 (registry+https://github.com/rust-lang/crates.io-index)",
]

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
edition = "2018"
license = "MPL"

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat_ffi"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
description = "Deltachat FFI"
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
edition = "2018"

View File

@@ -1,6 +1,6 @@
//! Constants
pub const DC_VERSION_STR: &'static [u8; 14] = b"1.0.0-alpha.1\x00";
pub const DC_VERSION_STR: &'static [u8; 14] = b"1.0.0-alpha.2\x00";
pub const DC_MOVE_STATE_MOVING: u32 = 3;
pub const DC_MOVE_STATE_STAY: u32 = 2;