From cea481f494ef6d6603b2b18e640f077f70108ca8 Mon Sep 17 00:00:00 2001 From: bluss Date: Tue, 8 Aug 2017 21:02:31 +0200 Subject: [PATCH] 0.4.0 --- Cargo.toml | 7 +++++-- README.rst | 4 ++-- src/lib.rs | 4 ++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9f6e1821..184d6e16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,10 +1,10 @@ [package] name = "arrayvec" -version = "0.3.21" +version = "0.4.0" authors = ["bluss"] license = "MIT/Apache-2.0" -description = "A vector with a fixed capacity, it can be stored on the stack too. Implements fixed capacity ArrayVec and ArrayString." +description = "A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString." documentation = "https://docs.rs/arrayvec/" repository = "https://github.com/bluss/arrayvec" @@ -39,3 +39,6 @@ serde-1 = ["serde"] [package.metadata.docs.rs] features = ["serde-1"] + +[package.metadata.release] +no-dev-version = true diff --git a/README.rst b/README.rst index fcf1bc34..73d4d132 100644 --- a/README.rst +++ b/README.rst @@ -32,12 +32,12 @@ Recent Changes (arrayvec) ``pop_at, swap_pop``. - Similar changes to ``ArrayString``'s push methods. - - Use internal version of ``RangeArgument`` trait + - Use a local version of the ``RangeArgument`` trait - Add array sizes 50, 150, 200 by @daboross - Support serde 1.0 by @daboross - New method ``.push_unchecked()`` by @niklasf - ``ArrayString`` implements ``PartialOrd, Ord`` by @tbu- - - Require Rust 1.15 + - Require Rust 1.14 - 0.3.23 diff --git a/src/lib.rs b/src/lib.rs index c32f7230..6b16042f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,7 +1,7 @@ //! **arrayvec** provides the types `ArrayVec` and `ArrayString`: //! array-backed vector and string types, which store their contents inline. //! -//! The **arrayvec** crate has the following cargo feature flags: +//! The arrayvec package has the following cargo features: //! //! - `std` //! - Optional, enabled by default @@ -10,7 +10,7 @@ //! - `use_union` //! - Optional //! - Requires Rust nightly channel -//! - Experimental: This flag uses nightly so it may break unexpectedly +//! - Experimental: This flag uses nightly so it *may break* unexpectedly //! at some point; since it doesn't change API this flag may also change //! to do nothing in the future. //! - Use the unstable feature untagged unions for the internal implementation,