Skip to content

Commit 72ac2a0

Browse files
committed
Release v0.9.0
1 parent 79e2004 commit 72ac2a0

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/sfackler/rust-openssl.svg?branch=master)](https://travis-ci.org/sfackler/rust-openssl)
44

5-
[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.8.3/openssl).
5+
[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.9.0/openssl).
66

77
## Warning
88

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.7.17"
3+
version = "0.9.0"
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://sfackler.github.io/rust-openssl/doc/v0.7.17/openssl_sys"
9+
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.9.0/openssl_sys"
1010
links = "openssl"
1111
build = "build.rs"
1212

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://sfackler.github.io/rust-openssl/doc/v0.7.17")]
3+
#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.9.0")]
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.8.3"
3+
version = "0.9.0"
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://sfackler.github.io/rust-openssl/doc/v0.8.3/openssl"
8+
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.9.0/openssl"
99
readme = "../README.md"
1010
keywords = ["crypto", "tls", "ssl", "dtls"]
1111
build = "build.rs"
@@ -20,7 +20,7 @@ v110 = []
2020
bitflags = "0.7"
2121
lazy_static = "0.2"
2222
libc = "0.2"
23-
openssl-sys = { version = "0.7.17", path = "../openssl-sys" }
23+
openssl-sys = { version = "0.9", path = "../openssl-sys" }
2424

2525
[dev-dependencies]
2626
rustc-serialize = "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://sfackler.github.io/rust-openssl/doc/v0.8.3")]
1+
#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.9.0")]
22

33
#[macro_use]
44
extern crate bitflags;

0 commit comments

Comments
 (0)