summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS34
-rw-r--r--configure.ac4
3 files changed, 40 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index cdb3d2aa..0bff9050 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2.24.0:
+
+ Updated configure and NEWS for the stable release.
+
2.23.4:
2009-03-26 Jonathon Jongsma <jonathon.jongsma@collabora.co.uk>
diff --git a/NEWS b/NEWS
index f457a672..c1cfc7cb 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,37 @@
+2.24.0:
+
+* Changes in glibmm 2.24 compared to glibmm 2.22:
+
+Glib:
+* BalanceTree: New class, wrapping GTree.
+ (Szilárd Pfeiffer, Jonathan Jongsma)
+* Fix ustring::format(non-const char*) and add regression test.
+ (Debarshi Ray)
+
+Gio:
+* Added InetAddress, NetworkAddress, NetworkService, Resolver, Socket,
+ SocketAddress, SocketAddressEnumerator, SocketClient, SocketConnectable,
+ SocketConnection, SocketListener, SocketService, SrvTarget, TcpConnection,
+ Threaded SocketService, UnixConnection
+ (Jonanthan Jongsma)
+* AsyncResult: Add get_source_object_base(), deprecating get_source_object()
+ because it usually can never work.
+ (Murray Cumming, Daniel Elstner) Bug #608269 (Michael Hasselmann)
+* Cancellable: Added release_fd() and make_polldf().
+File:
+ - Added has_parent(), supports_thread_contexts(), start_mountable(),
+ stop_mountable(), poll_mountable()
+ - Aded create_file_readwrite(), create_file_readwrite_async().
+ - Added open_readwrite(), open_readwrite_async(), finish_readwrite(), r
+ replace_readwrite(), replace_readwrite_async() and finish_replace_readwrite().
+ - unmount_mountable(), eject_mountable(): Add overrides with MountOperation
+ parameters.
+* ThemedIcon: Added get_names().
+ (Murray Cumming)
+* NetworkService: Add domain property.
+ (Krzesimir Nowak)
+
+
2.23.4 (unstable):
Gio:
diff --git a/configure.ac b/configure.ac
index e53ac250..37ca95bd 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([glibmm], [2.23.4],
+AC_INIT([glibmm], [2.24.0],
[http://bugzilla.gnome.org/enter_bug.cgi?product=glibmm],
[glibmm], [http://www.gtkmm.org/])
AC_PREREQ([2.59])
@@ -57,7 +57,7 @@ AS_IF([test "x$enable_static" = xyes],
AC_DEFINE([GIOMM_STATIC_LIB], [1], [Define if giomm is built as a static library])
])
-glibreq='2.0 >= 2.23.1'
+glibreq='2.0 >= 2.24.0'
GLIBMM_MODULES="sigc++-2.0 >= 2.0 glib-$glibreq gobject-$glibreq gmodule-$glibreq"
GIOMM_MODULES="$GLIBMM_MODULES gio-$glibreq"
test "x$glibmm_host_windows" = xyes || GIOMM_MODULES="$GIOMM_MODULES gio-unix-$glibreq"