File: release_notes.qbk

package info (click to toggle)
boost1.55 1.55.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 487,824 kB
  • ctags: 673,349
  • sloc: cpp: 2,098,430; xml: 106,036; ansic: 46,744; python: 32,427; sh: 11,864; cs: 2,121; asm: 1,640; makefile: 984; perl: 714; yacc: 456; php: 132; fortran: 43; sql: 13; csh: 6
file content (54 lines) | stat: -rw-r--r-- 2,406 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54

[/ Copyright (C) 2009-2012 Lorenzo Caminiti ]
[/ Distributed under the Boost Software License, Version 1.0 ]
[/ (see accompanying file LICENSE_1_0.txt or a copy at ]
[/ http://www.boost.org/LICENSE_1_0.txt) ]
[/ Home at http://www.boost.org/libs/local_function ]

[section Release Notes]

This section lists the major changes between different library releases (in chronological order).

[heading Version 1.0.0 (2012-04-12)]

# Incorporated all comments from the [@http://lists.boost.org/boost-announce/2011/12/0340.php Boost review of this library].
# Removed local blocks and local exits.
# Renamed the library from Boost.Local to Boost.LocalFunction.
# Using `this_` instead of `this` also in the local function declaration (not just the body).
# Made changes that allow to return local functions (similar to closures).
# Added GCC lambda and constant block examples.
# Moved `overloaded_function` to Boost.Functional/OverloadedFunction.
# Moved `BOOST_IDENTITY_TYPE` to Boost.Utility/IdentityType.
# Completely removed use of Boost.Typeof when bound and result types are explicitly specified.
# Added `..._ID` macros for multiple expansions on the same line.
# Fixed compilation on Boost regression test platforms.

[heading Version 0.2.0 (2011-05-14)]

# Replaced parenthesized syntax with variadic and sequencing macro syntaxes.
# Profiled library performances against other approaches.
# Replaced virtual functor trick with casting functor trick (for smaller run-time).
# Optimized library run-time (rearranging code and not using casting functor trick on compilers that accept local classes as template parameters).
# Supported inline and recursive local functions.
# Added type-of macro to expose bound types.
# Allowed to explicitly specify bound types.
# Removed using `boost::function` instead of exposing internal local functor as public API.
# Added functor to overload local functions (and functors in general).
# Implemented support for nesting local functions, blocks, and exits into one another.

[heading Version 0.1.1 (2011-01-10)]

# Uploaded library source into Boost SVN sandbox.
# Fixed prev/next arrows and other minor layouts in documentation.
# Added Release section to documentation.

[heading Version 0.1.0 (2011-01-03)]

# Shared with Boost for first round of comments.

[heading Version 0.0.1 (2010-12-15)]

# Completed development, examples, and documentation.

[endsect]