summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS34
-rw-r--r--configure.ac4
3 files changed, 39 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ae5d4d7..13d04003 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,5 @@
+2.27.3:
+
2010-11-10 Murray Cumming <murrayc@murrayc.com>
Gio: Added some methods.
@@ -16,7 +18,7 @@
and read_upto_finish(). Updated the read_until*() documentation to
discourage their use (apparently they will be properly deprecated eventually).
* gio/src/settings.hg: Added range_check().
- * gio/src/socketclient.[hg|ccg]: Addef connect_to_uri(), connect_to_uri_async()
+ * gio/src/socketclient.[hg|ccg]: Added connect_to_uri(), connect_to_uri_async()
and connect_to_uri_finish().
2010-11-08 José Alburquerque <jaalburqu@svn.gnome.org>
diff --git a/NEWS b/NEWS
index d89bd96a..56835a72 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,37 @@
+2.27.3: (unstable):
+
+Gio:
+* Application: Added open().
+* ActionGroup: Added list_actions.
+* DataInputStream: Added read_upto(), read_upto_async()
+ and read_upto_finish().
+ (Murray Cumming)
+* DBusConnection: Correct the AsyncInitable inheritance/implementation.
+* MemoryOutputStream: Added steal_data(), and a const get_data().
+* NetworkService: Added get_scheme(), set_scheme() and the property.
+* Socket: Added get_timeout(), set_timeout(),
+ receive_with_blocking() and send_with_blocking().
+ (José Alburquerque)
+* SocketClient:
+ * Add get_enable_proxy(), set_enable_proxy(),
+ get_timeout(), set_timeout() and add_application_proxy().
+ (José Alburquerque)
+ * Added connect_to_uri(), connect_to_uri_async()
+ and connect_to_uri_finish().
+ (Murray Cumming)
+* SocketConnectable: socketconnectable.hg: Added proxy_enumerate() and a
+ const enumerate().
+* Added UnixSocketAddress
+* UnixCredentialMessage, UnixFDMessage: Wrap properties properly.
+ (José Alburquerque)
+* giomm.h: Add includes of newly wrapped API.
+ (José Alburquerque)
+
+Glib:
+* ObjectBase: Fixed compiler errors when the debug warnings are enabled
+ at compile time.
+ (Krzesimir Nowak)
+
2.27.2: (unstable):
Gio:
diff --git a/configure.ac b/configure.ac
index 9ba32895..db86e585 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.27.2],
+AC_INIT([glibmm], [2.27.3],
[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.27.2'
+glibreq='2.0 >= 2.27.3'
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"