diff --git a/README.md b/README.md
index a6a5e8b65075361391696d9d5138c98d83c9a65c..aeb1d42c48a99a8cb4ed290f157f165b206f2d0e 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.6.6/openssl).
+[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.6.7/openssl).
 
 ## Building
 
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml
index b13fc80a16d03fa7096db509118b05f7baf8ed7a..045e15ebce169bdfe5df5a77d32059a5e7fb8f43 100644
--- a/openssl-sys/Cargo.toml
+++ b/openssl-sys/Cargo.toml
@@ -1,12 +1,12 @@
 [package]
 name = "openssl-sys"
-version = "0.6.6"
+version = "0.6.7"
 authors = ["Alex Crichton <alex@alexcrichton.com>",
            "Steven Fackler <sfackler@gmail.com>"]
 license = "MIT"
 description = "FFI bindings to OpenSSL"
 repository = "https://github.com/sfackler/rust-openssl"
-documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.6/openssl_sys"
+documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.7/openssl_sys"
 
 links = "openssl"
 build = "build.rs"
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs
index df9190e5691599cfab50c0a88c68445d4bf140ad..bc177959bc486d2c02b0c53cceecbf0dc3658d4e 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.6.6")]
+#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.6.7")]
 
 extern crate libc;
 
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml
index ac0a5cc78a1888bece0b59cc97a7ee5a2934e78f..6607ef949b2d38d609a93e5e48e55e36c4d51675 100644
--- a/openssl/Cargo.toml
+++ b/openssl/Cargo.toml
@@ -1,11 +1,11 @@
 [package]
 name = "openssl"
-version = "0.6.6"
+version = "0.6.7"
 authors = ["Steven Fackler <sfackler@gmail.com>"]
 license = "Apache-2.0"
 description = "OpenSSL bindings"
 repository = "https://github.com/sfackler/rust-openssl"
-documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.6/openssl"
+documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.7/openssl"
 readme = "../README.md"
 keywords = ["crypto", "tls", "ssl", "dtls"]
 
@@ -24,7 +24,7 @@ ecdh_auto = ["openssl-sys/ecdh_auto"]
 
 [dependencies.openssl-sys]
 path = "../openssl-sys"
-version = "0.6.6"
+version = "0.6.7"
 
 [dependencies]
 bitflags = ">= 0.2, < 0.4"
diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs
index 5a3b215fcbe3993c54aef004a6fe4eea246fc858..c7af31132d160041f1281f9d5f358e7f8eb3c9ca 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.6.6")]
+#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.6.7")]
 
 #[macro_use]
 extern crate bitflags;