diff --git a/README.md b/README.md index 838965751e43045e1b6a27fe73a8cc605ef6b3db..b6dd56510eb355b789f7aa4a9b90cb09476d157d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Build Status](https://travis-ci.org/sfackler/rust-openssl.svg?branch=master)](https://travis-ci.org/sfackler/rust-openssl) -[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.7.1/openssl). +[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.7.2/openssl). ## Building diff --git a/openssl-sys-extras/Cargo.toml b/openssl-sys-extras/Cargo.toml index c3d1f5654faef6c20a587c1083ae419767ad4658..d0719b025b312b845b3ff415566c852c9bd5961a 100644 --- a/openssl-sys-extras/Cargo.toml +++ b/openssl-sys-extras/Cargo.toml @@ -1,13 +1,11 @@ [package] name = "openssl-sys-extras" -version = "0.7.1" +version = "0.7.2" authors = ["Steven Fackler "] license = "MIT" description = "Extra FFI bindings to OpenSSL that require a C shim" repository = "https://github.com/sfackler/rust-openssl" -documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.1/openssl_sys_extras" - -links = "openssl_shim" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.2/openssl_sys_extras" build = "build.rs" [features] diff --git a/openssl-sys-extras/src/lib.rs b/openssl-sys-extras/src/lib.rs index 08d9e3d2eeec1045dc4bcdd19ed8568a2282cb4e..85bb4392d728e901379504269a6d01c7db51c943 100644 --- a/openssl-sys-extras/src/lib.rs +++ b/openssl-sys-extras/src/lib.rs @@ -1,5 +1,5 @@ #![allow(non_upper_case_globals, non_snake_case)] -#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.0")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.2")] extern crate openssl_sys; extern crate libc; diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 1e025d845c5e76362e4e81b052ba353b8a9382d0..d20992c8c263de55cd41dd4479721bc88df55a8a 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,13 +1,12 @@ [package] name = "openssl-sys" -version = "0.7.1" +version = "0.7.2" authors = ["Alex Crichton ", "Steven Fackler "] license = "MIT" description = "FFI bindings to OpenSSL" repository = "https://github.com/sfackler/rust-openssl" -documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.1/openssl_sys" - +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.2/openssl_sys" links = "openssl" build = "build.rs" diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 1fc6777fdc4198f05bfdbb428bbcd762c53cf0d0..77ba20db2d5fa1615b23338f05fb6f18d0973164 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -1,6 +1,6 @@ #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] #![allow(dead_code)] -#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.1")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.2")] extern crate libc; diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index f3e9f5ce78fa75a99c7cf054c08045e56f1d5e59..0d5a4c3959d16f816b98c8229e73e6d34dc5ee8a 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "openssl" -version = "0.7.1" +version = "0.7.2" authors = ["Steven Fackler "] license = "Apache-2.0" description = "OpenSSL bindings" repository = "https://github.com/sfackler/rust-openssl" -documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.1/openssl" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.2/openssl" readme = "../README.md" keywords = ["crypto", "tls", "ssl", "dtls"] build = "build.rs" diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs index 4691b6ddb8a0def1574821806d6e7f7c4471b75e..959c11c290128908b78edc316014cdf4139a9c8f 100644 --- a/openssl/src/lib.rs +++ b/openssl/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.1")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.2")] #[macro_use] extern crate bitflags;