diff --git a/PHP Markdown Extra Readme.text b/PHP Markdown Extra Readme.text
index 6e76c46..49bccbe 100644
--- a/PHP Markdown Extra Readme.text
+++ b/PHP Markdown Extra Readme.text
@@ -1,7 +1,7 @@
PHP Markdown Extra
==================
-Version 1.2 - Sun 11 May 2008
+Version 1.2.1 - Tue 27 May 2008
by Michel Fortin
@@ -204,13 +204,13 @@ expected; (3) the output PHP Markdown actually produced.
Version History
---------------
-Current Extra:
+Extra 1.2.1 (27 May 2008):
* Fixed a problem where Markdown headers and horizontal rules were
transformed into their HTML equivalent inside fenced code blocks.
-Extra 1.2:
+Extra 1.2 (11 May 2008):
* Added fenced code block syntax which don't require indentation
and can start and end with blank lines. A fenced code block
@@ -236,7 +236,7 @@ Extra 1.2:
been code.
-1.0.1l:
+1.0.1l (11 May 2008):
* Now removing the UTF-8 BOM at the start of a document, if present.
diff --git a/markdown.php b/markdown.php
index be20fff..38e286d 100644
--- a/markdown.php
+++ b/markdown.php
@@ -13,7 +13,7 @@
define( 'MARKDOWN_VERSION', "1.0.1l" ); # Sun 11 May 2008
-define( 'MARKDOWNEXTRA_VERSION', "1.2" ); # Sun 11 May 2008
+define( 'MARKDOWNEXTRA_VERSION', "1.2.1" ); # Tue 27 May 2008
#
@@ -71,7 +71,7 @@ function Markdown($text) {
Plugin Name: Markdown Extra
Plugin URI: http://www.michelf.com/projects/php-markdown/
Description: Markdown syntax allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by John Gruber. More...
-Version: 1.2
+Version: 1.2.1
Author: Michel Fortin
Author URI: http://www.michelf.com/
*/