aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2016-12-09 21:54:06 -0800
committerSteven Fackler <[email protected]>2016-12-09 21:54:06 -0800
commit791f2c8f4d70f49f2face6ea56ef924a784c12fb (patch)
tree9264957eae5314c91b3b5343e89077134d79d6ac
parentSwitch to docs.rs for docs (diff)
downloadrust-openssl-791f2c8f4d70f49f2face6ea56ef924a784c12fb.tar.xz
rust-openssl-791f2c8f4d70f49f2face6ea56ef924a784c12fb.zip
Release v0.9.3v0.9.3
-rw-r--r--README.md2
-rw-r--r--openssl-sys/Cargo.toml4
-rw-r--r--openssl-sys/src/lib.rs2
-rw-r--r--openssl/Cargo.toml6
-rw-r--r--openssl/src/lib.rs2
5 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 6f4c1f94..eee09f52 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://docs.rs/openssl/0.9.2/openssl).
+[Documentation](https://docs.rs/openssl/0.9.3/openssl).
## Warning
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml
index 9deae1ec..7e827ed6 100644
--- a/openssl-sys/Cargo.toml
+++ b/openssl-sys/Cargo.toml
@@ -1,12 +1,12 @@
[package]
name = "openssl-sys"
-version = "0.9.2"
+version = "0.9.3"
authors = ["Alex Crichton <[email protected]>",
"Steven Fackler <[email protected]>"]
license = "MIT"
description = "FFI bindings to OpenSSL"
repository = "https://github.com/sfackler/rust-openssl"
-documentation = "https://docs.rs/openssl-sys/0.9.2/openssl_sys"
+documentation = "https://docs.rs/openssl-sys/0.9.3/openssl_sys"
links = "openssl"
build = "build.rs"
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs
index f287290d..e65bc447 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, overflowing_literals)]
-#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.2")]
+#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.3")]
extern crate libc;
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml
index 315c1fad..9de27903 100644
--- a/openssl/Cargo.toml
+++ b/openssl/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "openssl"
-version = "0.9.2"
+version = "0.9.3"
authors = ["Steven Fackler <[email protected]>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
repository = "https://github.com/sfackler/rust-openssl"
-documentation = "https://docs.rs/openssl/0.9.2/openssl"
+documentation = "https://docs.rs/openssl/0.9.3/openssl"
readme = "../README.md"
keywords = ["crypto", "tls", "ssl", "dtls"]
build = "build.rs"
@@ -20,7 +20,7 @@ v110 = []
bitflags = "0.7"
lazy_static = "0.2"
libc = "0.2"
-openssl-sys = { version = "0.9.2", path = "../openssl-sys" }
+openssl-sys = { version = "0.9.3", path = "../openssl-sys" }
[dev-dependencies]
tempdir = "0.3"
diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs
index 366a0a99..5d881d64 100644
--- a/openssl/src/lib.rs
+++ b/openssl/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url="https://docs.rs/openssl/0.9.2")]
+#![doc(html_root_url="https://docs.rs/openssl/0.9.3")]
#[macro_use]
extern crate bitflags;