diff --git a/CHANGES b/CHANGES index 58e15ae..4d17fb9 100644 --- a/CHANGES +++ b/CHANGES @@ -1,8 +1,14 @@ Ronn CHANGES ============ -Version 0.6 (not yet released) ------------------------------- +Version 0.6.6 (2010 June 13) +---------------------------- + +Small bug fix release fixes whitespace stripping between adjacent +inline elements in roff output (adamv, rtomayko) + +Version 0.6 (2010 June 13) +-------------------------- Features: diff --git a/Rakefile b/Rakefile index 74eae02..88c7d58 100644 --- a/Rakefile +++ b/Rakefile @@ -82,6 +82,8 @@ task :rev do data = File.read('lib/ronn.rb') data.gsub!(/^( *)REV *=.*/, "\\1REV = '#{rev}'") File.open('lib/ronn.rb', 'wb') { |fd| fd.write(data) } + puts "revision: #{rev}" + puts "version: #{`ruby -Ilib -rronn -e 'puts Ronn::VERSION'`}" end require 'rubygems' diff --git a/lib/ronn.rb b/lib/ronn.rb index b1ac4f8..000edf2 100755 --- a/lib/ronn.rb +++ b/lib/ronn.rb @@ -10,7 +10,7 @@ def self.new(filename, attributes={}, &block) end # bring REV up to date with: rake rev - REV = '0.6.0' + REV = '0.6-6-gd7645f2' VERSION = REV[/(?:[\d.]+)(?:-\d+)?/].tr('-', '.') def self.release? diff --git a/man/ronn.1 b/man/ronn.1 index 439bb07..e0b8a64 100644 --- a/man/ronn.1 +++ b/man/ronn.1 @@ -1,7 +1,7 @@ -.\" generated with Ronn/v0.6.0 +.\" generated with Ronn/v0.6.6 .\" http://github.com/rtomayko/ronn/ . -.TH "RONN" "1" "June 2010" "0.6.0" "Ronn 0.6.0" +.TH "RONN" "1" "June 2010" "0.6-6-gd7645f2" "Ronn 0.6.6" . .SH "NAME" \fBronn\fR \- convert markdown files to manpages diff --git a/man/ronn.5 b/man/ronn.5 index fbf8101..887abdd 100644 --- a/man/ronn.5 +++ b/man/ronn.5 @@ -1,7 +1,7 @@ -.\" generated with Ronn/v0.6.0 +.\" generated with Ronn/v0.6.6 .\" http://github.com/rtomayko/ronn/ . -.TH "RONN" "5" "June 2010" "0.6.0" "Ronn 0.6.0" +.TH "RONN" "5" "June 2010" "0.6-6-gd7645f2" "Ronn 0.6.6" . .SH "NAME" \fBronn\fR \- markdown\-based text format for authoring manpages diff --git a/man/ronn.7 b/man/ronn.7 index af81e1b..4316178 100644 --- a/man/ronn.7 +++ b/man/ronn.7 @@ -1,7 +1,7 @@ -.\" generated with Ronn/v0.6.0 +.\" generated with Ronn/v0.6.6 .\" http://github.com/rtomayko/ronn/ . -.TH "RONN" "7" "June 2010" "0.6.0" "Ronn 0.6.0" +.TH "RONN" "7" "June 2010" "0.6-6-gd7645f2" "Ronn 0.6.6" . .SH "NAME" \fBronn\fR \- the opposite of roff @@ -162,7 +162,7 @@ Ronn aims to address many of the issues with manpage creation while preserving t Ronn is Copyright (C) 2009 Ryan Tomayko \fIhttp://tomayko\.com/about\fR . .br - See the file COPYING for information of licensing and distribution\. +See the file COPYING for information of licensing and distribution\. . .SH "SEE ALSO" ronn(1) \fIhttp://rtomayko\.github\.com/ronn/ronn\.1\fR, ronn(5) \fIhttp://rtomayko\.github\.com/ronn/ronn\.5\fR, markdown(5) diff --git a/ronn.gemspec b/ronn.gemspec index c788194..17bbca8 100644 --- a/ronn.gemspec +++ b/ronn.gemspec @@ -1,6 +1,6 @@ Gem::Specification.new do |s| s.name = 'ronn' - s.version = '0.6.0' + s.version = '0.6.6' s.date = '2010-06-13' s.description = "The opposite of roff" @@ -31,6 +31,7 @@ Gem::Specification.new do |s| lib/ronn/template/print.css lib/ronn/template/screen.css lib/ronn/template/toc.css + lib/ronn/utils.rb man/ronn.1 man/ronn.1.ronn man/ronn.5 @@ -58,12 +59,16 @@ Gem::Specification.new do |s| test/middle_paragraph.html test/middle_paragraph.roff test/middle_paragraph.ronn + test/missing_spaces.roff + test/missing_spaces.ronn test/ronn_test.rb test/section_reference_links.html test/section_reference_links.roff test/section_reference_links.ronn test/titleless_document.html test/titleless_document.ronn + test/underline_spacing_test.roff + test/underline_spacing_test.ronn ] # = MANIFEST =