From 658455be70f904acbf3f3a82fee5e051c6fb6d75 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Tue, 8 Mar 2016 20:21:55 +0100 Subject: [PATCH] 0.0.2 --- NEWS | 23 +++++++++++++++++++++++ configure.ac | 2 +- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index e69de29..40e48ec 100644 --- a/NEWS +++ b/NEWS @@ -0,0 +1,23 @@ +0.0.2: + +* Use perfect forwarding. + (Murray Cumming) +* Make tuple_*() functions constexpr. + (Murray Cumming) +* Remove tuple_for_each_const() because tuple_for_each() is now generic enough. + (Murray Cumming) +* tuple_for_each(), tuple_transform_each(): Iterate from start to end, + not in reverse. + (Murray Cumming) +* tuple_type_cdr<>: Simplify the implementation. + (Jonathan Wakely) +* Allow use with std::ref()ed tuple elements. + (Jonathan Wakely) +* Do not use anyonymous namespace in public headers, + to avoid violating the One Definition Rule. + (Jonathan Wakely) + + +0.0.1: + +* Initial release diff --git a/configure.ac b/configure.ac index 064756e..ae9c6a5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([murrayc-tuple-utils],[0.0.1]) +AC_INIT([murrayc-tuple-utils],[0.0.2]) AC_PREREQ(2.63) AC_CONFIG_SRCDIR([tests/test_tuple_cdr.cc])