Skip to content

Commit ee58fc0

Browse files
committed
Release 0.2.0
1 parent 75a1712 commit ee58fc0

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

security-framework-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "security-framework-sys"
3-
version = "0.1.16"
3+
version = "0.2.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Security Framework bindings"
77
repository = "https://github.com/sfackler/rust-security-framework"
8-
documentation = "https://sfackler.github.io/rust-security-framework/doc/v0.1.16/security_framework_sys"
8+
documentation = "https://sfackler.github.io/rust-security-framework/doc/v0.2/security_framework_sys"
99
readme = "../README.md"
1010
keywords = ["OSX", "iOS", "TLS", "SSL", "crypto"]
1111
build = "build.rs"

security-framework-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://sfackler.github.io/rust-security-framework/doc/v0.1.14")]
1+
#![doc(html_root_url = "https://sfackler.github.io/rust-security-framework/doc/v0.2")]
22
#![allow(bad_style)]
33

44
extern crate core_foundation_sys;

security-framework/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[package]
22
name = "security-framework"
3-
version = "0.1.16"
3+
version = "0.2.0"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "MIT/Apache-2.0"
66
description = "Security Framework bindings"
77
repository = "https://github.com/sfackler/rust-security-framework"
8-
documentation = "https://sfackler.github.io/rust-security-framework/doc/v0.1.14/security_framework"
8+
documentation = "https://sfackler.github.io/rust-security-framework/doc/v0.2/security_framework"
99
readme = "../README.md"
1010
keywords = ["OSX", "iOS", "TLS", "SSL", "crypto"]
1111
exclude = ["test/*"]
1212

1313
[dependencies]
14-
security-framework-sys = { version = "0.1.16", path = "../security-framework-sys" }
14+
security-framework-sys = { version = "0.2", path = "../security-framework-sys" }
1515
core-foundation = "0.5.1"
1616
core-foundation-sys = "0.5.1"
1717
libc = "0.2"

security-framework/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Wrappers around the OSX Security Framework.
22
3-
#![doc(html_root_url = "https://sfackler.github.io/rust-security-framework/doc/v0.1.16")]
3+
#![doc(html_root_url = "https://sfackler.github.io/rust-security-framework/doc/v0.2")]
44
#![warn(missing_docs)]
55
#![allow(non_upper_case_globals)]
66

0 commit comments

Comments
 (0)