update documentation for release 1.2
diff --git a/README b/README
index 1a9abda..d0ae232 100644
--- a/README
+++ b/README
@@ -30,23 +30,23 @@
 
 == Download and Installation ==
 
-The current stable release of SnakeYAML: '''1.1'''.
+The current stable release of SnakeYAML: '''1.2'''.
 
 Download links:
 
  * '''source''': http://www.assembla.com/spaces/snakeyaml/trac_mercurial_tool
- * '''JAR package''': http://snakeyamlrepo.appspot.com/repository/SnakeYAML/SnakeYAML/1.1/SnakeYAML-1.1.jar
+ * '''JAR package''': http://snakeyamlrepo.appspot.com/repository/SnakeYAML/SnakeYAML/1.2/SnakeYAML-1.2.jar
  * '''ZIP archive''': http://www.assembla.com/spaces/snakeyaml/documents/ahRjS-eoSr3QBDeJe5aVNr/download/SnakeYAML-all-1.1.zip
  * '''Repository''': http://snakeyamlrepo.appspot.com/
  
-Browse 1.1 reports:
+Browse 1.2 reports:
 
- * '''Maven generated report''': http://snakeyamlrepo.appspot.com/releases/1.1/site/index.html
- * '''Project's report''': http://snakeyamlrepo.appspot.com/releases/1.1/site/project-reports.html
- * '''Javadocs''': http://snakeyamlrepo.appspot.com/releases/1.1/site/apidocs/index.html
- * '''Changes report''': http://snakeyamlrepo.appspot.com/releases/1.1/site/changes-report.html
- * '''Maven generated report''': http://snakeyamlrepo.appspot.com/releases/1.1/site/index.html
- * '''Test coverage report''': http://snakeyamlrepo.appspot.com/releases/1.1/site/cobertura/index.html
+ * '''Maven generated report''': http://snakeyamlrepo.appspot.com/releases/1.2/site/index.html
+ * '''Project's report''': http://snakeyamlrepo.appspot.com/releases/1.2/site/project-reports.html
+ * '''Javadocs''': http://snakeyamlrepo.appspot.com/releases/1.2/site/apidocs/index.html
+ * '''Changes report''': http://snakeyamlrepo.appspot.com/releases/1.2/site/changes-report.html
+ * '''Maven generated report''': http://snakeyamlrepo.appspot.com/releases/1.2/site/index.html
+ * '''Test coverage report''': http://snakeyamlrepo.appspot.com/releases/1.2/site/cobertura/index.html
 
 Maven 2 configuration:
 
@@ -70,7 +70,7 @@
   <dependency>
     <groupId>SnakeYAML</groupId>
     <artifactId>SnakeYAML</artifactId>
-    <version>1.1</version>
+    <version>1.2</version>
   </dependency>
   ...
 </dependencies>
@@ -104,7 +104,7 @@
 
 == History ==
 
-'''1.2 (in Mercurial)'''
+'''1.2 (2009-04-27)'''
  * add [http://trac-hg.assembla.com/snakeyaml/wiki/Documentation#LowLevelAPI info for low-level API]
  * Add 'Yaml.parse()' method which return Events to support low level YAML processing
  * Add 'Yaml.compose()' methods which return Nodes
diff --git a/announcement.msg b/announcement.msg
index 3de0276..682a3da 100644
--- a/announcement.msg
+++ b/announcement.msg
@@ -1,9 +1,9 @@
 From: Andrey Somov <py4fun@gmail.com>
 To: yaml-core@lists.sourceforge.net
-Subject: [ANN] SnakeYAML-1.1: improve performance and test coverage
+Subject: [ANN] SnakeYAML-1.2: expose low-level API
 
 =============================
- Announcing SnakeYAML-1.1
+ Announcing SnakeYAML-1.2
 =============================
 
 A new release of SnakeYAML is now available:
@@ -15,12 +15,10 @@
 
 Changes
 =======
- * Test coverage reached 98%
- * Better Spring support: the root JavaBean class can be specified as a String
- * Performance: fix a bug with expanding Regular Expressions
- * Fix ticket #4: java.sql.Date was not handled properly
- * Introduce Enums in DumperOptions
- * Minor bug fixes 
+ * expose low-level API
+ * Refactor: rename enums in DumperOptions to make the names consistent
+ * Add possibility to parse all scalars as Strings
+ * minor bug fixes
 
 Resources
 =========
@@ -28,7 +26,7 @@
 SnakeYAML homepage: http://trac-hg.assembla.com/snakeyaml/
 SnakeYAML documentation: http://trac-hg.assembla.com/snakeyaml/wiki/Documentation
 
-JAR package: http://snakeyamlrepo.appspot.com/repository/SnakeYAML/SnakeYAML/1.1/SnakeYAML-1.1.jar
+JAR package: http://snakeyamlrepo.appspot.com/repository/SnakeYAML/SnakeYAML/1.2/SnakeYAML-1.2.jar
 Reports: http://snakeyamlrepo.appspot.com/
 
 SnakeYAML Mercurial repository: http://hg.assembla.com/snakeyaml
diff --git a/doc/wiki/Documentation.txt b/doc/wiki/Documentation.txt
index 8f1950b..8034fa6 100644
--- a/doc/wiki/Documentation.txt
+++ b/doc/wiki/Documentation.txt
@@ -294,7 +294,6 @@
 42 -> Integer

 2009-03-30 -> Date

 }}}

-'''New in the development version:'''

 It is possible to drop "implicit typing" and parse all scalars as Strings:

 {{{

 version: 1.00

@@ -981,7 +980,6 @@
 }}}

 

 === Low Level API ===

-'''New in the development version:'''

 

 It is possible to [http://yaml.org/spec/1.1/#id860341 parse] or [http://yaml.org/spec/1.1/#id860452 compose] 

 the incoming stream of characters. Examples can be found 

diff --git a/pom.xml b/pom.xml
index 17d726d..3f20c66 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
 	<modelVersion>4.0.0</modelVersion>

 	<groupId>SnakeYAML</groupId>

 	<artifactId>SnakeYAML</artifactId>

-	<version>1.1</version>

+	<version>1.2</version>

 	<packaging>jar</packaging>

 	<name>SnakeYAML</name>

 	<description>YAML 1.1 parser and emitter for Java</description>

diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 71b6499..277f776 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -4,7 +4,7 @@
 		<author email="py4fun@gmail.com">Andrey Somov</author>

 	</properties>

 	<body>

-	    <release version="1.2-SNAPSHOT" date="in Mercurial" description="development">

+	    <release version="1.2" date="2009-04-27" description="expose low-level API">

             <action dev="py4fun" type="add">

                 Add 'Yaml.parse()' method which return Events to support low level YAML processing (2009-04-20)

             </action>