summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2013-05-08 08:48:28 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2013-05-08 08:48:28 +0100
commitbd6aac594c72d32057a5821fcedb2d36644526aa (patch)
treeba361d806f410a916b2ef673bdd1eff4fe501d85
parent9b26cf8238a7d432fe96a50a75008aa6bce110da (diff)
downloaddbus-python-bd6aac594c72d32057a5821fcedb2d36644526aa.tar.gz
1.2.0
-rw-r--r--NEWS10
-rw-r--r--configure.ac6
2 files changed, 12 insertions, 4 deletions
diff --git a/NEWS b/NEWS
index 2515a46..896e821 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-D-Bus Python Bindings 1.1.2 (UNRELEASED)
+D-Bus Python Bindings 1.2.0 (2013-05-07)
========================================
The "compile like it's 1998" release.
@@ -7,6 +7,12 @@ Dependencies:
• libdbus 1.6 or later is now required.
+Enhancements:
+
+• Unicode Corrigendum 9: when used with a suitable version of libdbus
+ (1.6.10 or later, or 1.7.2 or later), noncharacters in strings are
+ now accepted
+
Fixes:
• Support DBusException('something with non—ASCII') under Python 2
@@ -26,6 +32,8 @@ Fixes:
• Use GObject.__class__ instead of GObjectMeta, which can no longer be
imported from gi.repository.GObject in pygobject 3.8
+• Fix autoreconfiscation on Automake 1.13 (Marko Lindqvist, fd.o #59006)
+
D-Bus Python Bindings 1.1.1 (2012-06-25)
========================================
diff --git a/configure.ac b/configure.ac
index 6b3a6d6..4f535b9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,11 +2,11 @@
AC_PREREQ(2.59c)
dnl If not 1, append datestamp to the version number
-m4_define(dbus_python_released, 0)
+m4_define(dbus_python_released, 1)
dnl The dbus-python version number (must actually be numeric at the moment)
m4_define(dbus_python_major_version, 1)
-m4_define(dbus_python_minor_version, 1)
-m4_define(dbus_python_micro_version, 1)
+m4_define(dbus_python_minor_version, 2)
+m4_define(dbus_python_micro_version, 0)
m4_define(dbus_python_maybe_datestamp,
m4_esyscmd([if test x]dbus_python_released[ != x1; then date +.%Y%m%d | tr -d '\n\r'; fi]))