From 9112ce6541dba6321c364b60264c78531d1a1049 Mon Sep 17 00:00:00 2001 From: James Henstridge Date: Thu, 31 Jul 2003 14:13:41 +0000 Subject: add some news items. 2003-07-31 James Henstridge * NEWS: add some news items. * configure.in: increment version number. * pygobject.c (pygobject_handler_is_connected): add wrapper (from bug #118676). * pygtype.c (pyg_object_descr_doc_get): add a call to PyType_Ready() to make sure the type is initialised (bug #118699). --- ChangeLog | 4 ++++ NEWS | 16 ++++++++++++++++ configure.in | 2 +- setup.py | 2 +- 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7023e173..a4b12852 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2003-07-31 James Henstridge + * NEWS: add some news items. + + * configure.in: increment version number. + * pygobject.c (pygobject_handler_is_connected): add wrapper (from bug #118676). diff --git a/NEWS b/NEWS index 6ab4c2a7..098665e5 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,19 @@ +pygtk-1.99.17: 31-July-2003 + - Threading support is compiled in by default now. It is + necessary to call gtk.threads_init() in order to make use of + threading though. There have been a number of fixes to the + threading support too. + - Fix up some problems with multiple definitions of global + variables in gobject module, that was causing problems on + Mac OS X. + - Wrappers for many new APIs (John Finlay, Naofumi Yasufuku, + Johan Dahlin and others). + - Improvements to the code generator to give better error + messages. + - Some fixes to property APIs to work correctly on 64 bit + systems, and to handle ATOM type properties. + - Fix copyright headers on source files. + pygtk-1.99.16: 23-March-2003 - various new functions wrapped. - More threding fixes (Jon Trowbridge) diff --git a/configure.in b/configure.in index 7da1ef45..90b504fb 100644 --- a/configure.in +++ b/configure.in @@ -4,7 +4,7 @@ AC_PREREQ(2.52) dnl the pygtk version number m4_define(pygtk_major_version, 1) m4_define(pygtk_minor_version, 99) -m4_define(pygtk_micro_version, 16) +m4_define(pygtk_micro_version, 17) m4_define(pygtk_version, pygtk_major_version.pygtk_minor_version.pygtk_micro_version) dnl versions of packages we require ... diff --git a/setup.py b/setup.py index 0081e825..0bdd2f99 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ from dsextras import getoutput, have_pkgconfig, list_files, \ MAJOR_VERSION = 1 MINOR_VERSION = 99 -MICRO_VERSION = 16 +MICRO_VERSION = 17 VERSION = "%d.%d.%d" % (MAJOR_VERSION, MINOR_VERSION, -- cgit v1.2.1