Skip to content

Commit 06b10a5

Browse files
committed
Release v0.9.8
1 parent efe9639 commit 06b10a5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

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.9.7"
3+
version = "0.9.8"
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.7/openssl_sys"
9+
documentation = "https://docs.rs/openssl-sys/0.9.8/openssl_sys"
1010
categories = ["cryptography", "external-ffi-bindings"]
1111
links = "openssl"
1212
build = "build.rs"

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://docs.rs/openssl-sys/0.9.7")]
3+
#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.8")]
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.9.7"
3+
version = "0.9.8"
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.7/openssl"
8+
documentation = "https://docs.rs/openssl/0.9.8/openssl"
99
readme = "../README.md"
1010
keywords = ["crypto", "tls", "ssl", "dtls"]
1111
categories = ["cryptography", "api-bindings"]
@@ -28,4 +28,4 @@ openssl-sys = { version = "0.9.7", path = "../openssl-sys" }
2828
tempdir = "0.3"
2929
winapi = "0.2"
3030
ws2_32-sys = "0.2"
31-
hex = "0.2"
31+
hex = "0.2"

openssl/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url="https://docs.rs/openssl/0.9.7")]
1+
#![doc(html_root_url="https://docs.rs/openssl/0.9.8")]
22

33
#[macro_use]
44
extern crate bitflags;

0 commit comments

Comments
 (0)