ChangeLog in kramdown-0.2.0 vs ChangeLog in kramdown-0.3.0
- old
+ new
@@ -1,4 +1,271 @@
+commit fff933c46a6345aca7ee2333b6c71d9466b0e297
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Sun Dec 20 16:20:10 2009 +0100
+
+ Small doc update before release
+
+doc/index.page
+doc/installation.page
+
+commit e1e97bcfeea51c1e3fe5afa787132e24d59fd968
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Sun Dec 20 16:18:54 2009 +0100
+
+ Small display fix
+
+benchmark/generate_data.rb
+
+commit d80c3782881777c246e971db4f86c7ff16241c7f
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Sun Dec 20 16:18:47 2009 +0100
+
+ Added kramdown 0.3.0 data to benchmark and graphs
+
+benchmark/historic-jruby-1.4.0.dat
+benchmark/historic-ruby-1.8.6.dat
+benchmark/historic-ruby-1.8.7.dat
+benchmark/historic-ruby-1.9.1p243.dat
+benchmark/historic-ruby-1.9.2dev.dat
+doc/img/graph-jruby-1.4.0.png
+doc/img/graph-ruby-1.8.6.png
+doc/img/graph-ruby-1.8.7.png
+doc/img/graph-ruby-1.9.1p243.png
+doc/img/graph-ruby-1.9.2dev.png
+
+commit 064f97f9bace384a54373f4dca168911dbccf19f
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Sun Dec 20 15:59:11 2009 +0100
+
+ Updated release notes
+
+doc/news/release_0_3_0.page
+
+commit 9041790eb12fedc914d6a9511640e41deeadfcd4
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Tue Dec 15 08:02:55 2009 +0100
+
+ Updated release notes
+
+doc/news/release_0_3_0.page
+
+commit e737974d5cdd9efcf381f3cd1d47809f6a5fbeb2
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Tue Dec 15 07:59:44 2009 +0100
+
+ Span HTML parser now uses the same semantics for invalid end tags and unclosed tags as block HTML parser
+
+doc/syntax.page
+lib/kramdown/parser/kramdown.rb
+lib/kramdown/parser/kramdown/html.rb
+test/testcases/span/05_html/normal.html
+test/testcases/span/05_html/normal.text
+
+commit cf9330e6f27f21e9a93251d78da61cb8be549671
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Tue Dec 15 07:35:41 2009 +0100
+
+ Updated release notes
+
+doc/news/release_0_3_0.page
+
+commit cd36641782835ddb7f32a0d83131db6193404f5e
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Tue Dec 15 07:31:11 2009 +0100
+
+ Fixed bug in emphasis parser
+
+ Emphasis started with an underscore at the beginning of a new line inside
+ a paragraph was not recognized.
+
+lib/kramdown/parser/kramdown/emphasis.rb
+test/testcases/span/02_emphasis/normal.html
+test/testcases/span/02_emphasis/normal.text
+
+commit 59d9be0976970cb33248c81c81d0500c2cfbb4ce
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Tue Dec 15 07:22:39 2009 +0100
+
+ Small update to the HTML syntax documentation
+
+doc/syntax.page
+
+commit ba0d7e1dc9deb8837c95e2f1f9e0f59cdfa93d33
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Mon Dec 14 10:56:57 2009 +0100
+
+ Fixed some flaws in the HTML parser
+
+ * raw HTML parsing did not work as specified in the syntax documentation
+ * XML comments/PIs now have their own element type
+ * fixed a small problem with autolinks in raw HTML blocks
+ * adjusted parsing of unclosed raw HTML blocks to adhere to syntax documentation
+
+lib/kramdown/converter.rb
+lib/kramdown/parser/kramdown.rb
+lib/kramdown/parser/kramdown/footnote.rb
+lib/kramdown/parser/kramdown/html.rb
+test/testcases/block/09_html/not_parsed.html
+test/testcases/block/09_html/not_parsed.text
+test/testcases/block/09_html/parse_as_raw.html
+test/testcases/block/09_html/parse_as_raw.text
+test/testcases/span/05_html/markdown_attr.html
+test/testcases/span/05_html/markdown_attr.text
+
+commit b85972868dd907fd102b665421d51c9bb86c3d86
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Sun Dec 13 19:42:45 2009 +0100
+
+ Fixed Maruku version number display
+
+benchmark/benchmark.rb
+
+commit 94e89b51cf33bae5cee929fa8ce97703f2fee6fc
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Sun Dec 13 19:42:28 2009 +0100
+
+ Fixed warning on Ruby 1.9
+
+lib/kramdown/parser/kramdown/list.rb
+
+commit d3df238aeb533302bafbcc3fe8246dedd74b42f7
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Sun Dec 13 19:42:04 2009 +0100
+
+ Implemented a new HTML block parser
+
+ The new parser is a little bit more restrictive but the surprise factor
+ for most HTML input should be less than before.
+
+doc/syntax.page
+lib/kramdown/converter.rb
+lib/kramdown/parser/kramdown.rb
+lib/kramdown/parser/kramdown/html.rb
+test/testcases/block/09_html/comment.html
+test/testcases/block/09_html/comment.text
+test/testcases/block/09_html/content_model/tables.text
+test/testcases/block/09_html/not_parsed.html
+test/testcases/block/09_html/not_parsed.text
+test/testcases/block/09_html/parse_as_raw.html
+test/testcases/block/09_html/parse_block_html.html
+test/testcases/block/09_html/parse_block_html.text
+test/testcases/block/09_html/processing_instruction.html
+test/testcases/block/09_html/processing_instruction.text
+test/testcases/block/09_html/simple.html
+test/testcases/block/09_html/simple.text
+
+commit cb8333118e7d70719bd25a6ef44c38e98af1d44f
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Wed Dec 9 14:51:24 2009 +0100
+
+ Added benchmark data and graphs from this data to the tests page
+
+benchmark/generate_data.rb
+benchmark/historic-jruby-1.4.0.dat
+benchmark/historic-ruby-1.8.6.dat
+benchmark/historic-ruby-1.8.7.dat
+benchmark/historic-ruby-1.9.1p243.dat
+benchmark/historic-ruby-1.9.2dev.dat
+benchmark/static-jruby-1.4.0.dat
+benchmark/static-ruby-1.8.6.dat
+benchmark/static-ruby-1.8.7.dat
+benchmark/static-ruby-1.9.1p243.dat
+benchmark/static-ruby-1.9.2dev.dat
+doc/img/graph-jruby-1.4.0.png
+doc/img/graph-ruby-1.8.6.png
+doc/img/graph-ruby-1.8.7.png
+doc/img/graph-ruby-1.9.1p243.png
+doc/img/graph-ruby-1.9.2dev.png
+doc/tests.page
+
+commit 78d9311ef919d9467502f053f416238937fb2746
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Tue Dec 8 09:45:56 2009 +0100
+
+ Source code restructuration
+
+ * email obfuscation is part of conversion now since it makes more sense there
+ * block parsers can now be enabled/disabled by the parser methods
+ * parsers methods put into various files
+
+lib/kramdown/converter.rb
+lib/kramdown/parser.rb
+lib/kramdown/parser/kramdown.rb
+lib/kramdown/parser/kramdown/attribute_list.rb
+lib/kramdown/parser/kramdown/autolink.rb
+lib/kramdown/parser/kramdown/blank_line.rb
+lib/kramdown/parser/kramdown/blockquote.rb
+lib/kramdown/parser/kramdown/codeblock.rb
+lib/kramdown/parser/kramdown/codespan.rb
+lib/kramdown/parser/kramdown/emphasis.rb
+lib/kramdown/parser/kramdown/eob.rb
+lib/kramdown/parser/kramdown/escaped_chars.rb
+lib/kramdown/parser/kramdown/extension.rb
+lib/kramdown/parser/kramdown/footnote.rb
+lib/kramdown/parser/kramdown/header.rb
+lib/kramdown/parser/kramdown/horizontal_rule.rb
+lib/kramdown/parser/kramdown/html.rb
+lib/kramdown/parser/kramdown/html_entity.rb
+lib/kramdown/parser/kramdown/line_break.rb
+lib/kramdown/parser/kramdown/link.rb
+lib/kramdown/parser/kramdown/list.rb
+lib/kramdown/parser/kramdown/paragraph.rb
+lib/kramdown/parser/kramdown/typographic_symbol.rb
+lib/kramdown/parser/registry.rb
+
+commit 13c1b5037d5ada5f661dc09ef3f1f18b437ed0f1
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Tue Dec 8 08:35:32 2009 +0100
+
+ Added note about spelling of kramdown
+
+doc/index.page
+
+commit f8f9e65ea3e980286086b7bc25ce6126ea5a2332
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Fri Dec 4 23:03:15 2009 +0100
+
+ Updated tested platforms and ruby versions
+
+doc/installation.page
+
+commit 06d1ff82de3a02c612b912e6384b89feb00a6e0a
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Fri Dec 4 21:02:03 2009 +0100
+
+ Removed deprecated methods
+
+lib/kramdown/deprecated.rb
+lib/kramdown/document.rb
+
+commit 1591c98a983398b8867c9aaf5151dc3021e2eedf
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Fri Dec 4 21:00:29 2009 +0100
+
+ Bumped version number and added release notes file
+
+doc/news/release_0_3_0.page
+lib/kramdown/version.rb
+
+commit b93f953c14e8c6c23951e5f78541f5ab69dc2b93
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Fri Dec 4 20:56:29 2009 +0100
+
+ Added a compatibility fix so that kramdown works under Ruby 1.8.5
+
+benchmark/testing.sh
+lib/kramdown/compatibility.rb
+lib/kramdown/document.rb
+
+commit 84bbbdd91686ada39b99af5b5cdd61d212065c9a
+Author: Thomas Leitner <t_leitner@gmx.at>
+Date: Fri Dec 4 08:13:15 2009 +0100
+
+ Fixed typos in the documentation
+
+doc/quickref.page
+doc/syntax.page
+
commit 034525fb53f178da9498e0f653c382a17549ca3a
Author: Thomas Leitner <t_leitner@gmx.at>
Date: Thu Dec 3 20:25:17 2009 +0100
Updated release notes