diff --git a/History.txt b/History.txt index 5416229..bf72447 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,8 @@ +== 0.7.1 / 2012-08-04 + +* Make source code blocks from lisp dialects use Pygments scheme lexer +* Bugfix: Make Coderay fallback to text lexer when unsupported lang is set + == 0.7.0 / 2012-07-08 * Highlight source code blocks using Pygments or CodeRay when available diff --git a/announcement.txt b/announcement.txt index 73d5fa5..804b311 100644 --- a/announcement.txt +++ b/announcement.txt @@ -1,4 +1,4 @@ -org-ruby version 0.7.0 +org-ruby version 0.7.1 by Brian Dewey http://github.com/bdewey/org-ruby @@ -9,7 +9,5 @@ significant thing this library does today is convert org-mode files to HTML or textile. == CHANGES -* Highlight source code blocks using Pygments or CodeRay when available -* Fixed lists behavior when code fragments, tables and examples were present -* Remove code tags with lang class and use instead src-:lang like org-exporter -* Fixed property drawers to consider properties with hyphens like :noweb-ref: +* Make source code blocks from lisp dialects use Pygments scheme lexer +* Bugfix: Make Coderay fallback to text lexer when unsupported lang is set diff --git a/lib/org-ruby.rb b/lib/org-ruby.rb index 700d106..8b48721 100644 --- a/lib/org-ruby.rb +++ b/lib/org-ruby.rb @@ -21,7 +21,7 @@ module OrgRuby # :stopdoc: - VERSION = '0.7.0' + VERSION = '0.7.1' LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR # :startdoc: diff --git a/org-ruby.gemspec b/org-ruby.gemspec index 0765a99..64611b4 100644 --- a/org-ruby.gemspec +++ b/org-ruby.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = "org-ruby" - s.version = "0.7.0" + s.version = "0.7.1" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Brian Dewey"] s.date = "2012-07-08" @@ -17,7 +17,6 @@ Gem::Specification.new do |s| s.rubyforge_project = "org-ruby" s.rubygems_version = "1.8.10" s.summary = "This gem contains Ruby routines for parsing org-mode files." - s.test_files = ["test/test_orgmode_parser.rb"] if s.respond_to? :specification_version then s.specification_version = 3