summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxi <xi@18f92427-320e-0410-9341-c67f048884a3>2006-08-20 18:28:15 +0000
committerxi <xi@18f92427-320e-0410-9341-c67f048884a3>2006-08-20 18:28:15 +0000
commit86545c648f4d84882c8926489a839c6970e10e19 (patch)
tree51f6d67959a28805177092863d193d79890bfedf
parent4af58bf9bac43dca7fdb08569abe5a9624d143d9 (diff)
downloadpyyaml-86545c648f4d84882c8926489a839c6970e10e19.tar.gz
Create the 3.04 tag.3.04
git-svn-id: http://svn.pyyaml.org/pyyaml/tags/3.04@232 18f92427-320e-0410-9341-c67f048884a3
-rw-r--r--announcement.msg17
1 files 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 <xi@resolvent.net>.
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.
+