Skip to content

Commit bf6dc28

Browse files
committed
Release v0.9.15
1 parent 43cacf0 commit bf6dc28

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

openssl-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "openssl-sys"
3-
version = "0.9.14"
3+
version = "0.9.15"
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.13/openssl_sys"
9+
documentation = "https://docs.rs/openssl-sys/0.9.15/openssl_sys"
1010
categories = ["cryptography", "external-ffi-bindings"]
1111
links = "openssl"
1212
build = "build.rs"

openssl-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
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.14")]
3+
#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.15")]
44

55
extern crate libc;
66

openssl/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "openssl"
3-
version = "0.9.14"
3+
version = "0.9.15"
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.13/openssl"
8+
documentation = "https://docs.rs/openssl/0.9.15/openssl"
99
readme = "../README.md"
1010
keywords = ["crypto", "tls", "ssl", "dtls"]
1111
categories = ["cryptography", "api-bindings"]
@@ -24,7 +24,7 @@ bitflags = "0.9"
2424
foreign-types = "0.2"
2525
lazy_static = "0.2"
2626
libc = "0.2"
27-
openssl-sys = { version = "0.9.14", path = "../openssl-sys" }
27+
openssl-sys = { version = "0.9.15", path = "../openssl-sys" }
2828

2929
[dev-dependencies]
3030
tempdir = "0.3"

openssl/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url="https://docs.rs/openssl/0.9.14")]
1+
#![doc(html_root_url="https://docs.rs/openssl/0.9.15")]
22

33
#[macro_use]
44
extern crate bitflags;

0 commit comments

Comments
 (0)