Skip to content

Commit 4336d1d

Browse files
committed
Release v0.9.12
1 parent 6c152e9 commit 4336d1d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

openssl-sys/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "openssl-sys"
3-
version = "0.9.11"
3+
version = "0.9.12"
44
authors = ["Alex Crichton <alex@alexcrichton.com>",
55
"Steven Fackler <sfackler@gmail.com>"]
66
license = "MIT"
77
description = "FFI bindings to OpenSSL"
88
repository = "https://github.com/sfackler/rust-openssl"
9-
documentation = "https://docs.rs/openssl-sys/0.9.11/openssl_sys"
9+
documentation = "https://docs.rs/openssl-sys/0.9.12/openssl_sys"
1010
categories = ["cryptography", "external-ffi-bindings"]
1111
links = "openssl"
1212
build = "build.rs"

openssl-sys/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
22
#![allow(dead_code, overflowing_literals)]
3-
#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.11")]
3+
#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.12")]
44

55
extern crate libc;
66

openssl/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "openssl"
3-
version = "0.9.11"
3+
version = "0.9.12"
44
authors = ["Steven Fackler <sfackler@gmail.com>"]
55
license = "Apache-2.0"
66
description = "OpenSSL bindings"
77
repository = "https://github.com/sfackler/rust-openssl"
8-
documentation = "https://docs.rs/openssl/0.9.11/openssl"
8+
documentation = "https://docs.rs/openssl/0.9.12/openssl"
99
readme = "../README.md"
1010
keywords = ["crypto", "tls", "ssl", "dtls"]
1111
categories = ["cryptography", "api-bindings"]
@@ -21,7 +21,7 @@ bitflags = "0.8"
2121
foreign-types = "0.2"
2222
lazy_static = "0.2"
2323
libc = "0.2"
24-
openssl-sys = { version = "0.9.11", path = "../openssl-sys" }
24+
openssl-sys = { version = "0.9.12", path = "../openssl-sys" }
2525

2626
[dev-dependencies]
2727
tempdir = "0.3"

openssl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url="https://docs.rs/openssl/0.9.11")]
1+
#![doc(html_root_url="https://docs.rs/openssl/0.9.12")]
22

33
#[macro_use]
44
extern crate bitflags;

0 commit comments

Comments
 (0)