[Python-checkins] r53358 - in python/trunk: Lib/ctypes/__init__.py Misc/NEWS

thomas.heller python-checkins at python.org
Wed Jan 10 21:12:13 CET 2007


Author: thomas.heller
Date: Wed Jan 10 21:12:13 2007
New Revision: 53358

Modified:
   python/trunk/Lib/ctypes/__init__.py
   python/trunk/Misc/NEWS
Log:
Change the ctypes version number to "1.1.0".

Modified: python/trunk/Lib/ctypes/__init__.py
==============================================================================
--- python/trunk/Lib/ctypes/__init__.py	(original)
+++ python/trunk/Lib/ctypes/__init__.py	Wed Jan 10 21:12:13 2007
@@ -5,7 +5,7 @@
 
 import os as _os, sys as _sys
 
-__version__ = "1.0.1"
+__version__ = "1.1.0"
 
 from _ctypes import Union, Structure, Array
 from _ctypes import _Pointer

Modified: python/trunk/Misc/NEWS
==============================================================================
--- python/trunk/Misc/NEWS	(original)
+++ python/trunk/Misc/NEWS	Wed Jan 10 21:12:13 2007
@@ -109,6 +109,8 @@
 Library
 -------
 
+- The version number of the ctypes package changed to "1.1.0".
+
 - Bug #1627575: logging: Added _open() method to FileHandler which can
   be used to reopen files. The FileHandler instance now saves the
   encoding (which can be None) in an attribute called "encoding".


More information about the Python-checkins mailing list