Skip to content

Commit 42ad50a

Browse files
committed
Release v0.9.10
1 parent ba2460d commit 42ad50a

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.9"
3+
version = "0.9.10"
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.9/openssl_sys"
9+
documentation = "https://docs.rs/openssl-sys/0.9.10/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.9")]
3+
#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.10")]
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.9"
3+
version = "0.9.10"
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.9/openssl"
8+
documentation = "https://docs.rs/openssl/0.9.10/openssl"
99
readme = "../README.md"
1010
keywords = ["crypto", "tls", "ssl", "dtls"]
1111
categories = ["cryptography", "api-bindings"]
@@ -22,7 +22,7 @@ bitflags = "0.7"
2222
foreign-types = "0.2"
2323
lazy_static = "0.2"
2424
libc = "0.2"
25-
openssl-sys = { version = "0.9.9", path = "../openssl-sys" }
25+
openssl-sys = { version = "0.9.10", path = "../openssl-sys" }
2626

2727
[dev-dependencies]
2828
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.9")]
1+
#![doc(html_root_url="https://docs.rs/openssl/0.9.10")]
22

33
#[macro_use]
44
extern crate bitflags;

0 commit comments

Comments
 (0)