Index: /pyyaml/trunk/setup.py
===================================================================
--- /pyyaml/trunk/setup.py	(revision 376)
+++ /pyyaml/trunk/setup.py	(revision 378)
@@ -1,5 +1,5 @@
 
 NAME = 'PyYAML'
-VERSION = '3.09'
+VERSION = '3.10'
 DESCRIPTION = "YAML parser and emitter for Python"
 LONG_DESCRIPTION = """\
@@ -32,7 +32,9 @@
     "Programming Language :: Python :: 2.5",
     "Programming Language :: Python :: 2.6",
+    "Programming Language :: Python :: 2.7",
     "Programming Language :: Python :: 3",
     "Programming Language :: Python :: 3.0",
     "Programming Language :: Python :: 3.1",
+    "Programming Language :: Python :: 3.2",
     "Topic :: Software Development :: Libraries :: Python Modules",
     "Topic :: Text Processing :: Markup",
Index: /pyyaml/trunk/CHANGES
===================================================================
--- /pyyaml/trunk/CHANGES	(revision 360)
+++ /pyyaml/trunk/CHANGES	(revision 378)
@@ -2,4 +2,11 @@
 For a complete Subversion changelog, see 'http://pyyaml.org/log/pyyaml'.
 
+3.10 (2011-05-30)
+-----------------
+
+* Do not try to build LibYAML bindings on platforms other than CPython
+  (Thank to olt(at)bogosoft(dot)com).
+* Clear cyclic references in the parser and the emitter
+  (Thank to kristjan(at)ccpgames(dot)com).
 
 3.09 (2009-08-31)
Index: /pyyaml/trunk/lib3/yaml/__init__.py
===================================================================
--- /pyyaml/trunk/lib3/yaml/__init__.py	(revision 377)
+++ /pyyaml/trunk/lib3/yaml/__init__.py	(revision 378)
@@ -9,5 +9,5 @@
 from .dumper import *
 
-__version__ = '3.09'
+__version__ = '3.10'
 try:
     from .cyaml import *
Index: /pyyaml/trunk/setup.cfg
===================================================================
--- /pyyaml/trunk/setup.cfg	(revision 356)
+++ /pyyaml/trunk/setup.cfg	(revision 378)
@@ -18,18 +18,18 @@
 # The following options are used to build PyYAML Windows installer
 # for Python 2.3 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.3/include
-#library_dirs=../../../libyaml/tags/0.1.3/win32/vc6/output/release/lib
+#include_dirs=../../../libyaml/tags/0.1.4/include
+#library_dirs=../../../libyaml/tags/0.1.4/win32/vc6/output/release/lib
 #define=YAML_DECLARE_STATIC
 
 # The following options are used to build PyYAML Windows installer
 # for Python 2.4 and Python 2.5 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.3/include
-#library_dirs=../../../libyaml/tags/0.1.3/win32/vs2003/output/release/lib
+#include_dirs=../../../libyaml/tags/0.1.4/include
+#library_dirs=../../../libyaml/tags/0.1.4/win32/vs2003/output/release/lib
 #define=YAML_DECLARE_STATIC
 
 # The following options are used to build PyYAML Windows installer
-# for Python 2.6, Python 3.0 and Python 3.1 on my PC:
-#include_dirs=../../../libyaml/tags/0.1.3/include
-#library_dirs=../../../libyaml/tags/0.1.3/win32/vs2008/output/release/lib
+# for Python 2.6, 2.7, 3.0, 3.1 and 3.2 on my PC:
+#include_dirs=../../../libyaml/tags/0.1.4/include
+#library_dirs=../../../libyaml/tags/0.1.4/win32/vs2008/output/release/lib
 #define=YAML_DECLARE_STATIC
 
Index: /pyyaml/trunk/announcement.msg
===================================================================
--- /pyyaml/trunk/announcement.msg	(revision 369)
+++ /pyyaml/trunk/announcement.msg	(revision 378)
@@ -1,8 +1,8 @@
-From: Kirill Simonov <xi@gamma.dn.ua>
+From: Kirill Simonov <xi@resolvent.net>
 To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
-Subject: [ANN] PyYAML-3.09: YAML parser and emitter for Python
+Subject: [ANN] PyYAML-3.10: YAML parser and emitter for Python
 
 ========================
- Announcing PyYAML-3.09
+ Announcing PyYAML-3.10
 ========================
 
@@ -11,22 +11,13 @@
     http://pyyaml.org/wiki/PyYAML
 
-Note that PyYAML supports both Python 2 and Python 3.  For
-compatibility notes, please see
-
-    http://pyyaml.org/wiki/PyYAMLDocumentation#Python3support
-
 
 Changes
 =======
 
-* Fixed use of uninitialized memory when emitting anchors with
-  LibYAML bindings (Thank to cegner(at)yahoo-inc(dot)com).
-* Fixed emitting incorrect BOM characters for UTF-16 (Thank to
-  Valentin Nechayev)
-* Fixed the emitter for folded scalars not respecting the preferred
-  line width (Thank to Ingy).
-* Fixed a subtle ordering issue with emitting '%TAG' directives
-  (Thank to Andrey Somov).
-* Fixed performance regression with LibYAML bindings.
+* Do not try to build LibYAML bindings on platforms other than CPython;
+  this fixed installation under Jython (Thank to olt(at)bogosoft(dot)com).
+* Clear cyclic references in the parser and the emitter
+  (Thank to kristjan(at)ccpgames(dot)com).
+* LibYAML bindings are rebuilt with the latest version of Cython.
 
 
@@ -37,13 +28,14 @@
 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
 
-TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.09.tar.gz
-ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.09.zip
+TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.10.tar.gz
+ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.10.zip
 Windows installers:
-    http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.3.exe
-    http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.4.exe
-    http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.5.exe
-    http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.6.exe
-    http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py3.0.exe
-    http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py3.1.exe
+    http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.3.exe
+    http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.4.exe
+    http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.5.exe
+    http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.6.exe
+    http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.0.exe
+    http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.1.exe
+    http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.2.exe
 
 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml
Index: /pyyaml/trunk/lib/yaml/__init__.py
===================================================================
--- /pyyaml/trunk/lib/yaml/__init__.py	(revision 377)
+++ /pyyaml/trunk/lib/yaml/__init__.py	(revision 378)
@@ -9,5 +9,5 @@
 from dumper import *
 
-__version__ = '3.09'
+__version__ = '3.10'
 
 try:
