summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2019-09-02 14:06:22 +0100
committerSimon McVittie <smcv@collabora.com>2019-09-02 14:06:22 +0100
commit1ad47921f13bdc12866c872ebbe56abd0c14b592 (patch)
treea5037602354d0d427df7af4b0689626f33cbe66b
parent416dd1461cb68e0648382722832e7a22025d3683 (diff)
downloaddbus-python-1ad47921f13bdc12866c872ebbe56abd0c14b592.tar.gz
Update NEWS
Signed-off-by: Simon McVittie <smcv@collabora.com>
-rw-r--r--NEWS18
1 files changed, 18 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index c8a0b27..39ef28e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,12 @@
D-Bus Python Bindings 1.2.10 (UNRELEASED)
=========================================
+dbus-python version control is now hosted on freedesktop.org's Gitlab
+installation, and bug reports and feature requests have switched from
+Bugzilla bugs (indicated by "fd.o #nnn") to Gitlab issues
+("dbus-python#nnn") and merge requests ("dbus-python!nnn"). See README
+and CONTRIBUTING.md for more details.
+
Dependencies:
• dbus 1.8 was already required, but is more strongly required now:
@@ -32,11 +38,23 @@ Enhancements:
• Add clearer license information using SPDX-License-Identifier
(Simon McVittie)
+• Improve test coverage (Simon McVittie)
+
Fixes:
• Don't set deprecated tp_print to NULL under Python 3, fixing build
warnings with Python 3.8 pre-releases (Simon McVittie)
+• Include inherited methods and properties when documenting objects,
+ which regressed when migrating from epydoc to sphinx
+ (Simon McVittie)
+
+• Add missing variant_level member to UnixFd type, for parity with the
+ other dbus.types types (dbus-python!3; John Baublitz)
+
+• Don't reply to method calls if they have the NO_REPLY_EXPECTED flag
+ (fd.o#32529, dbus-python#26; Simon McVittie)
+
• Silence -Wcast-function-type with gcc 8 (Simon McVittie)
• Fix distcheck with python3.7 by deleting __pycache__ during uninstall