From 9357b0a9873c2fc0ba231c9d4e4e44e68ab4e188 Mon Sep 17 00:00:00 2001 From: xi Date: Sun, 20 Aug 2006 18:26:02 +0000 Subject: [PATCH] Amend the announce message. git-svn-id: http://svn.pyyaml.org/pyyaml/trunk@231 18f92427-320e-0410-9341-c67f048884a3 --- announcement.msg | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/announcement.msg b/announcement.msg index 9cc4eca..06addaf 100644 --- a/announcement.msg +++ b/announcement.msg @@ -17,7 +17,8 @@ Changes * Include experimental LibYAML bindings. * Fully support recursive structures. -* Fix a number of bugs and annoyances. +* Fix a number of bugs and annoyances + (see http://pyyaml.org/wiki/PyYAML#History for more details). Resources @@ -28,7 +29,9 @@ PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.tar.gz ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.zip -Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32.exe +Windows installer: + http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32-py2.3.exe + http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32-py2.4.exe PyYAML SVN repository: http://svn.pyyaml.org/pyyaml Submit a bug report: http://pyyaml.org/newticket?component=pyyaml @@ -58,9 +61,10 @@ Example >>> import yaml >>> print yaml.load(""" -... --- &A -... direct self reference: *A -... indirect self references: [*A, *A, *A] +... &A { +... direct self reference: *A, +... indirect self references: [*A, *A, *A] +... } ... """) {'direct self reference': {...}, 'indirect self references': [{...}, {...}, {...}]} @@ -73,3 +77,6 @@ The PyYAML module is written by Kirill Simonov . PyYAML is released under the MIT license. +This release is developed with the support of the Google Summer of Code +program under the mentorship of Clark Evans. + -- 2.11.4.GIT