Skip to content

Commit

Permalink
Small bugfix release, bump version to 0.7.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
wallyqs committed Aug 4, 2012
1 parent 180d995 commit 468e753
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
5 changes: 5 additions & 0 deletions 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
Expand Down
8 changes: 3 additions & 5 deletions 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

Expand All @@ -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
2 changes: 1 addition & 1 deletion lib/org-ruby.rb
Expand Up @@ -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:
Expand Down
3 changes: 1 addition & 2 deletions org-ruby.gemspec
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 468e753

Please sign in to comment.