Skip to content

Commit

Permalink
Bump version of gem to 0.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wallyqs committed Oct 7, 2012
1 parent f479f1f commit 5a89396
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
7 changes: 7 additions & 0 deletions History.txt
@@ -1,3 +1,10 @@
== 0.7.2 / 2012-10-07

* Many fixes to the regular expressions used for emphasis, contributed by [[http://github.com/vonavi][vonavi]]
* Bug fix for when a table starts with a headline, thanks to [[http://github/til][til]]
* Asterisk can be used for definition lists too
* Use text lexer as default option for Pygments and Coderay when no language is specified

== 0.7.1 / 2012-08-04 == 0.7.1 / 2012-08-04


* Make source code blocks from lisp dialects use Pygments scheme lexer * Make source code blocks from lisp dialects use Pygments scheme lexer
Expand Down
9 changes: 6 additions & 3 deletions announcement.txt
@@ -1,4 +1,4 @@
org-ruby version 0.7.1 org-ruby version 0.7.2
by Brian Dewey by Brian Dewey
http://github.com/bdewey/org-ruby http://github.com/bdewey/org-ruby


Expand All @@ -9,5 +9,8 @@ significant thing this library does today is convert org-mode files to
HTML or textile. HTML or textile.


== CHANGES == CHANGES
* Make source code blocks from lisp dialects use Pygments scheme lexer
* Bugfix: Make Coderay fallback to text lexer when unsupported lang is set * Many fixes to the regular expressions used for emphasis, contributed by [[http://github.com/vonavi][vonavi]]
* Bug fix for when a table starts with a headline, thanks to [[http://github/til][til]]
* Asterisk can be used for definition lists too
* Use text lexer as default option for Pygments and Coderay when no language is specified
2 changes: 1 addition & 1 deletion lib/org-ruby.rb
Expand Up @@ -21,7 +21,7 @@
module OrgRuby module OrgRuby


# :stopdoc: # :stopdoc:
VERSION = '0.7.1' VERSION = '0.7.2'
LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
# :startdoc: # :startdoc:
Expand Down
5 changes: 3 additions & 2 deletions org-ruby.gemspec
Expand Up @@ -2,10 +2,11 @@


Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = "org-ruby" s.name = "org-ruby"
s.version = "0.7.1" s.version = "0.7.2"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Brian Dewey"] s.authors = ["Brian Dewey"]
s.date = "2012-07-08" s.date = "2012-10-07"
s.description = "This gem contains Ruby routines for parsing org-mode files.The most\nsignificant thing this library does today is convert org-mode files to\nHTML or textile. Currently, you cannot do much to customize the\nconversion. The supplied textile conversion is optimized for\nextracting \"content\" from the orgfile as opposed to \"metadata.\" " s.description = "This gem contains Ruby routines for parsing org-mode files.The most\nsignificant thing this library does today is convert org-mode files to\nHTML or textile. Currently, you cannot do much to customize the\nconversion. The supplied textile conversion is optimized for\nextracting \"content\" from the orgfile as opposed to \"metadata.\" "
s.email = "bdewey@gmail.com" s.email = "bdewey@gmail.com"
s.executables = ["org-ruby"] s.executables = ["org-ruby"]
Expand Down

0 comments on commit 5a89396

Please sign in to comment.