From e22822e4ae75dc59c7242d84bc306476fbd92a3b Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Jun 2018 17:19:49 -0400 Subject: Bump master to 0.3.5.0-alpha-dev --- src/win32/orconfig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/win32/orconfig.h b/src/win32/orconfig.h index a201a76ac6..65a905debe 100644 --- a/src/win32/orconfig.h +++ b/src/win32/orconfig.h @@ -218,7 +218,7 @@ #define USING_TWOS_COMPLEMENT /* Version number of package */ -#define VERSION "0.3.4.2-alpha-dev" +#define VERSION "0.3.5.0-alpha-dev" -- cgit v1.2.3-54-g00ecf From ac5b1428ea9d0a4c59e9c9c11a88019ebae6abf0 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Fri, 15 Jun 2018 21:44:22 +0000 Subject: rust: Expose rand module from crypto crate. --- src/rust/crypto/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/rust/crypto/lib.rs b/src/rust/crypto/lib.rs index e7e3b22e03..b349664dbe 100644 --- a/src/rust/crypto/lib.rs +++ b/src/rust/crypto/lib.rs @@ -34,4 +34,5 @@ extern crate libc; extern crate external; pub mod digests; // Unfortunately named "digests" plural to avoid name conflict with the digest crate +pub mod rand; -- cgit v1.2.3-54-g00ecf