From e9746bab8089a83d3f8a3dbe5052d3788d984edd Mon Sep 17 00:00:00 2001 From: bluss Date: Tue, 6 Sep 2016 11:45:57 +0200 Subject: [PATCH] nodrop and nodrop-union 0.1.8 --- README.rst | 7 +++++++ nodrop/Cargo.toml | 3 ++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 680f524..78030b1 100644 --- a/README.rst +++ b/README.rst @@ -69,6 +69,13 @@ Recent Changes (arrayvec) Recent Changes (nodrop) ----------------------- +- 0.1.8 + + - Add crate feature ``use_union`` that uses untagged unions to implement NoDrop. + Finally we have an implementation without hacks, without a runtime flag, + and without an actual ``Drop`` impl (which was needed to suppress drop). + The crate feature requires nightly and is unstable. + - 0.1.7 - Remove crate feature ``no_drop_flag``, because it doesn't compile on nightly diff --git a/nodrop/Cargo.toml b/nodrop/Cargo.toml index 69bbdb9..f3e88a5 100644 --- a/nodrop/Cargo.toml +++ b/nodrop/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nodrop" -version = "0.1.7" +version = "0.1.8" authors = ["bluss"] license = "MIT/Apache-2.0" @@ -31,4 +31,5 @@ default-features = false [dependencies.nodrop-union] path = "../nodrop-union" +version = "0.1.8" optional = true