summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Henstridge <james@daa.com.au>2003-07-31 14:13:41 +0000
committerJames Henstridge <jamesh@src.gnome.org>2003-07-31 14:13:41 +0000
commit9112ce6541dba6321c364b60264c78531d1a1049 (patch)
tree7279aa5fafcba29effbf866de472154046fba42c
parent69bec112342c409d3f68020c7efcc88bff8b23f2 (diff)
downloadpygtk-9112ce6541dba6321c364b60264c78531d1a1049.tar.gz
add some news items.PYGTK_1_99_17
2003-07-31 James Henstridge <james@daa.com.au> * 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).
-rw-r--r--ChangeLog4
-rw-r--r--NEWS16
-rw-r--r--configure.in2
-rwxr-xr-xsetup.py2
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 <james@daa.com.au>
+ * 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,