summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <jdahlin@async.com.br>2003-02-09 00:01:24 +0000
committerJohan Dahlin <zilch@src.gnome.org>2003-02-09 00:01:24 +0000
commitf0e17ccdc311989a6b62425eabd7aa2e62cfcf1b (patch)
treebb83893f2e4b92ec82cfb2f23647b8ec5c692ef5
parent1920ba0212c27c60d97cb8aa8a6530a07fbf2bdc (diff)
downloadpygtk-PYGTK_1_99_15.tar.gz
=== PyGTK 1.99.15 ===PYGTK_1_99_15
2003-02-08 Johan Dahlin <jdahlin@async.com.br> * configure.in, setup.py: Upped version number * pygtk-2.0.pc.in (codegendir): Added. * setup.py: Added Numeric and gtkgl support (gtkgl untested). * dsextras.py: Updated. * gtk/libglade.override (connect_many): Add PyErr_Clear() here. Since PyMapping_GetItemString will raise an AttributeError if the handler can't be found.
-rw-r--r--ChangeLog4
-rw-r--r--NEWS11
-rw-r--r--configure.in2
-rwxr-xr-xsetup.py3
4 files changed, 18 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ed4ae4fa..b1c64f64 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
+=== PyGTK 1.99.15 ===
+
2003-02-08 Johan Dahlin <jdahlin@async.com.br>
+ * configure.in, setup.py: Upped version number
+
* pygtk-2.0.pc.in (codegendir): Added.
* setup.py: Added Numeric and gtkgl support (gtkgl untested).
diff --git a/NEWS b/NEWS
index b8abcea9..ed96cc2e 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,14 @@
+pygtk-1.99.15: 08-February-2003
+ - distutils support
+ - Code generator improvements (Jeremy Katz)
+ - Threading fixes (Lots of people)
+ - API additions to GtkTextBuffer, GtkTextView and GtkFileSelection
+ - GMainLoop/GMainContext support, you can now run input_add,
+ timeout_add without importing gtk.
+ - libglade now support passing in an instance to signal_autoconnect
+ - pygtk.py import speedup.
+ - Many many bugs fixed.
+
pygtk-1.99.14: 27-December-2002
- update to newer auto-tools (autoconf-2.57, automake-1.7.2,
libtool-1.4.3).
diff --git a/configure.in b/configure.in
index 66522011..567162d3 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, 14)
+m4_define(pygtk_micro_version, 15)
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 39f7c091..79e8abd4 100755
--- a/setup.py
+++ b/setup.py
@@ -11,6 +11,7 @@
PyGTK is a set of bindings for the GTK widget set. It provides an object oriented interface that is slightly higher level than the C one. It automatically does all the type casting and reference counting that you would have to do normally with the C API. You can find out more on the official homepage, http://www.daa.com.au/~james/pygtk/"""
+from commands import getoutput
from distutils.command.build import build
from distutils.core import setup
import os
@@ -22,7 +23,7 @@ from dsextras import Template, TemplateExtension
MAJOR_VERSION = 1
MINOR_VERSION = 99
-MICRO_VERSION = 14
+MICRO_VERSION = 15
VERSION = "%d.%d.%d" % (MAJOR_VERSION,
MINOR_VERSION,