diff --git a/Cargo.lock b/Cargo.lock index 7fca70950..c9ef37221 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", ] diff --git a/Cargo.toml b/Cargo.toml index d4ff9f15e..539117eda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "deltachat" -version = "1.0.0-alpha.1" +version = "1.0.0-alpha.2" authors = ["dignifiedquire "] edition = "2018" license = "MPL" diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml index 5df91a47b..29fb8129b 100644 --- a/deltachat-ffi/Cargo.toml +++ b/deltachat-ffi/Cargo.toml @@ -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 "] edition = "2018" diff --git a/src/constants.rs b/src/constants.rs index 237df3f83..4b0432068 100644 --- a/src/constants.rs +++ b/src/constants.rs @@ -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;