1 2[/ Copyright (C) 2009-2012 Lorenzo Caminiti ] 3[/ Distributed under the Boost Software License, Version 1.0 ] 4[/ (see accompanying file LICENSE_1_0.txt or a copy at ] 5[/ http://www.boost.org/LICENSE_1_0.txt) ] 6[/ Home at http://www.boost.org/libs/local_function ] 7 8[section Release Notes] 9 10This section lists the major changes between different library releases (in chronological order). 11 12[heading Version 1.0.0 (2012-04-12)] 13 14# Incorporated all comments from the [@http://lists.boost.org/boost-announce/2011/12/0340.php Boost review of this library]. 15# Removed local blocks and local exits. 16# Renamed the library from Boost.Local to Boost.LocalFunction. 17# Using `this_` instead of `this` also in the local function declaration (not just the body). 18# Made changes that allow to return local functions (similar to closures). 19# Added GCC lambda and constant block examples. 20# Moved `overloaded_function` to Boost.Functional/OverloadedFunction. 21# Moved `BOOST_IDENTITY_TYPE` to Boost.Utility/IdentityType. 22# Completely removed use of Boost.Typeof when bound and result types are explicitly specified. 23# Added `..._ID` macros for multiple expansions on the same line. 24# Fixed compilation on Boost regression test platforms. 25 26[heading Version 0.2.0 (2011-05-14)] 27 28# Replaced parenthesized syntax with variadic and sequencing macro syntaxes. 29# Profiled library performances against other approaches. 30# Replaced virtual functor trick with casting functor trick (for smaller run-time). 31# Optimized library run-time (rearranging code and not using casting functor trick on compilers that accept local classes as template parameters). 32# Supported inline and recursive local functions. 33# Added type-of macro to expose bound types. 34# Allowed to explicitly specify bound types. 35# Removed using `boost::function` instead of exposing internal local functor as public API. 36# Added functor to overload local functions (and functors in general). 37# Implemented support for nesting local functions, blocks, and exits into one another. 38 39[heading Version 0.1.1 (2011-01-10)] 40 41# Uploaded library source into Boost SVN sandbox. 42# Fixed prev/next arrows and other minor layouts in documentation. 43# Added Release section to documentation. 44 45[heading Version 0.1.0 (2011-01-03)] 46 47# Shared with Boost for first round of comments. 48 49[heading Version 0.0.1 (2010-12-15)] 50 51# Completed development, examples, and documentation. 52 53[endsect] 54 55