summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-04-27 13:57:26 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-04-27 13:57:26 +0200
commit543a93429b0c83191978dff6fce82d364ee60ce8 (patch)
tree0786abf798243dae78f38ab7360b886fe8e12374
parent17176689106bb14b75ac741c8e86e10792839b09 (diff)
downloadsigc++-543a93429b0c83191978dff6fce82d364ee60ce8.tar.gz
2.99.6
-rw-r--r--NEWS27
-rw-r--r--configure.ac2
2 files changed, 28 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 730d80e..a7f8c48 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,30 @@
+2.99.6 (unstable):
+
+* signal: Remove slots() and the container that it returns,
+ and the iterator for that container.
+ See https://mail.gnome.org/archives/libsigc-list/2016-April/msg00009.html
+* signal: connect(): Return a connection, instead of an iterator that
+ can be implicitly converted to a connection.
+* Use std::shared_ptr<> for signal_impl reference-counting.
+ Instead of manual reference-counting.
+ (Murray Cumming) Bug #764935
+* slot: Use unique_ptr<> to avoid direct call of destructor.
+ (Marcin Kolny) Bug #764935
+* Add optional benchmark code, using boost::timer.
+ (Murray Cumming)
+* Make some single-item constructors explicit.
+ (Murray Cumming)
+* Make some member variables and methods private.
+ (Murray Cumming)
+* Remove _ and __ prefixes on variables and parameters.
+ (Murray Cumming)
+* Header guards: Remove leading underscores (and trailing underscores).
+ (Murray Cumming)
+* limit_derived_target<T_Target>: Rename to limit_trackable_target<>
+ and visit_each_type<T_Type>() to visit_each_trackable() to make their purpose
+ more obvious.
+ (Murray Cumming)
+
2.99.5 (unstable):
* Functors (mem_functor, ptr_functor) no longer need to derive from a common
diff --git a/configure.ac b/configure.ac
index b09af78..98143e4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -15,7 +15,7 @@
## You should have received a copy of the GNU Lesser General Public License
## along with this library. If not, see <http://www.gnu.org/licenses/>.
-AC_INIT([libsigc++], [2.99.5],
+AC_INIT([libsigc++], [2.99.6],
[http://bugzilla.gnome.org/enter_bug.cgi?product=libsigc%2B%2B],
[libsigc++], [http://libsigc.sourceforge.net/])
AC_PREREQ([2.59])