Skip to content

Commit

Permalink
Merge #307
Browse files Browse the repository at this point in the history
307: beta release r=Dylan-DPC a=Dylan-DPC

**I'm submitting a(n)** release

# Description
0.7.0-beta release

# Related Issue(s)
#306

Co-authored-by: dylan_DPC <dylan.dpc@gmail.com>
Co-authored-by: Dylan DPC <dylan.dpc@gmail.com>
  • Loading branch information
bors[bot] and Dylan-DPC committed Aug 25, 2018
2 parents d4328b9 + 98ea43f commit faf5ded
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ homepage = "https://github.com/uuid-rs/uuid"
name = "uuid"
readme = "README.md"
repository = "https://github.com/uuid-rs/uuid"
version = "0.6.5"
version = "0.7.0-beta"

[package.metadata.docs.rs]
all-features = true
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ you'll need to change how you depend on `uuid`:

```toml
[dependencies]
uuid = { version = "0.6", features = ["v4"] }
uuid = { version = "0.7.0-beta", features = ["v4"] }
```

Next, you'll write:
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,21 @@
//!
//! ```toml
//! [dependencies]
//! uuid = "0.6"
//! uuid = "0.7.0-beta"
//! ```
//!
//! To activate various features, use syntax like:
//!
//! ```toml
//! [dependencies]
//! uuid = { version = "0.6", features = ["serde", "v4"] }
//! uuid = { version = "0.7.0-beta", features = ["serde", "v4"] }
//! ```
//!
//! You can disable default features with:
//!
//! ```toml
//! [dependencies]
//! uuid = { version = "0.6", default-features = false }
//! uuid = { version = "0.7.0-beta", default-features = false }
//! ```
//!
//! # Examples
Expand Down

0 comments on commit faf5ded

Please sign in to comment.