Skip to content

Commit

Permalink
Merge #135
Browse files Browse the repository at this point in the history
135: Release  for 0.6.0-beta r=kinggoesgaming a=Dylan-DPC

References #132 

Fist beta release for 0.6.0. We will release a stable 0.6.0 either this week or next week once all bugs have been fixed or attended to.
  • Loading branch information
bors[bot] committed Feb 5, 2018
2 parents 8b661b9 + 92342c5 commit 32e93d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Add this to your `Cargo.toml`:

```toml
[dependencies]
uuid = "0.5.1"
uuid = "0.6.0-beta"
```

and this to your crate root:
Expand Down Expand Up @@ -65,7 +65,7 @@ you'll need to change how you depend on `uuid`:

```toml
[dependencies]
uuid = { version = "0.5", features = ["v4"] }
uuid = { version = "0.6", features = ["v4"] }
```

Next, you'll write:
Expand All @@ -85,7 +85,7 @@ you'll also need to change how you depend on `uuid`:

```toml
[dependencies]
uuid = { version = "0.5.1", features = ["v5"] }
uuid = { version = "0.6.0-beta", features = ["v5"] }
```

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 @@ -45,21 +45,21 @@
//!
//! ```toml
//! [dependencies]
//! uuid = "0.5.1"
//! uuid = "0.6.0-beta"
//! ```
//!
//! To activate various features, use syntax like:
//!
//! ```toml
//! [dependencies]
//! uuid = { version = "0.5.1", features = ["serde", "v4"] }
//! uuid = { version = "0.6.0-beta", features = ["serde", "v4"] }
//! ```
//!
//! You can disable default features with:
//!
//! ```toml
//! [dependencies]
//! uuid = { version = "0.5.1", default-features = false }
//! uuid = { version = "0.6.0-beta", default-features = false }
//! ```
//!
//! # Examples
Expand Down

0 comments on commit 32e93d7

Please sign in to comment.