From c2f6156b425970ec1541835d152c65a7ced7f155 Mon Sep 17 00:00:00 2001 From: bluss Date: Thu, 8 Sep 2016 11:46:01 +0200 Subject: [PATCH] nodrop-union 0.1.9 --- README.rst | 11 +++++++++++ nodrop-union/Cargo.toml | 4 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 78030b1..564520b 100644 --- a/README.rst +++ b/README.rst @@ -91,6 +91,17 @@ Recent Changes (nodrop) optimization, which skips overwriting if the inner value does not need drop. +Recent Changes (nodrop-union) +----------------------- + +- 0.1.9 + + - Add ``Copy, Clone`` implementations + +- 0.1.8 + + - Initial release + License ======= diff --git a/nodrop-union/Cargo.toml b/nodrop-union/Cargo.toml index 1ee2cfa..3e693c9 100644 --- a/nodrop-union/Cargo.toml +++ b/nodrop-union/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "nodrop-union" -version = "0.1.8" +version = "0.1.9" authors = ["bluss"] license = "MIT/Apache-2.0" description = "A wrapper type to inhibit drop (destructor). Implementation crate for nodrop, the untagged unions implementation (which is unstable / requires nightly) as of this writing." -documentation = "http://bluss.github.io/arrayvec/doc/nodrop" +documentation = "http://bluss.github.io/arrayvec/doc/nodrop_union" repository = "https://github.com/bluss/arrayvec" keywords = ["container", "drop", "no_std"]