Bump to 0.9.0

This commit is contained in:
Alex Crichton
2017-05-21 08:48:31 -07:00
parent e3fa1b5f37
commit e36cd33de1
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ name = "bitflags"
# NB: When modifying, also modify:
# 1. html_root_url in lib.rs
# 2. number in readme (for breaking changes)
version = "0.8.0"
version = "0.9.0"
authors = ["The Rust Project Developers"]
license = "MIT/Apache-2.0"
keywords = ["bit", "bitmask", "bitflags"]
+1 -1
View File
@@ -13,7 +13,7 @@ Add this to your `Cargo.toml`:
```toml
[dependencies]
bitflags = "0.8"
bitflags = "0.9"
```
and this to your crate root:
+3 -3
View File
@@ -11,8 +11,8 @@
//! A typesafe bitmask flag generator useful for sets of C-style bitmask flags.
//! It can be used for creating typesafe wrappers around C APIs.
//!
//! The `bitflags!` macro generates a `struct` that manages a set of flags. The
//! flags should only be defined for integer types, otherwise unexpected type
//! The `bitflags!` macro generates a `struct` that manages a set of flags. The
//! flags should only be defined for integer types, otherwise unexpected type
//! errors may occur at compile time.
//!
//! # Example
@@ -218,7 +218,7 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/bitflags/0.8.2")]
#![doc(html_root_url = "https://docs.rs/bitflags/0.9.0")]
// When compiled for the rustc compiler itself we want to make sure that this is
// an unstable crate.
#![cfg_attr(rustbuild, feature(staged_api))]