Skip to content

Commit

Permalink
0.6.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rtomayko committed Jun 14, 2010
1 parent d7645f2 commit 731fad6
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 11 deletions.
10 changes: 8 additions & 2 deletions CHANGES
@@ -1,8 +1,14 @@
Ronn CHANGES 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: Features:


Expand Down
2 changes: 2 additions & 0 deletions Rakefile
Expand Up @@ -82,6 +82,8 @@ task :rev do
data = File.read('lib/ronn.rb') data = File.read('lib/ronn.rb')
data.gsub!(/^( *)REV *=.*/, "\\1REV = '#{rev}'") data.gsub!(/^( *)REV *=.*/, "\\1REV = '#{rev}'")
File.open('lib/ronn.rb', 'wb') { |fd| fd.write(data) } File.open('lib/ronn.rb', 'wb') { |fd| fd.write(data) }
puts "revision: #{rev}"
puts "version: #{`ruby -Ilib -rronn -e 'puts Ronn::VERSION'`}"
end end


require 'rubygems' require 'rubygems'
Expand Down
2 changes: 1 addition & 1 deletion lib/ronn.rb
Expand Up @@ -10,7 +10,7 @@ def self.new(filename, attributes={}, &block)
end end


# bring REV up to date with: rake rev # bring REV up to date with: rake rev
REV = '0.6.0' REV = '0.6-6-gd7645f2'
VERSION = REV[/(?:[\d.]+)(?:-\d+)?/].tr('-', '.') VERSION = REV[/(?:[\d.]+)(?:-\d+)?/].tr('-', '.')


def self.release? def self.release?
Expand Down
4 changes: 2 additions & 2 deletions man/ronn.1
@@ -1,7 +1,7 @@
.\" generated with Ronn/v0.6.0 .\" generated with Ronn/v0.6.6
.\" http://github.com/rtomayko/ronn/ .\" 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" .SH "NAME"
\fBronn\fR \- convert markdown files to manpages \fBronn\fR \- convert markdown files to manpages
Expand Down
4 changes: 2 additions & 2 deletions man/ronn.5
@@ -1,7 +1,7 @@
.\" generated with Ronn/v0.6.0 .\" generated with Ronn/v0.6.6
.\" http://github.com/rtomayko/ronn/ .\" 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" .SH "NAME"
\fBronn\fR \- markdown\-based text format for authoring manpages \fBronn\fR \- markdown\-based text format for authoring manpages
Expand Down
6 changes: 3 additions & 3 deletions man/ronn.7
@@ -1,7 +1,7 @@
.\" generated with Ronn/v0.6.0 .\" generated with Ronn/v0.6.6
.\" http://github.com/rtomayko/ronn/ .\" 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" .SH "NAME"
\fBronn\fR \- the opposite of roff \fBronn\fR \- the opposite of roff
Expand Down Expand Up @@ -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 Ronn is Copyright (C) 2009 Ryan Tomayko \fIhttp://tomayko\.com/about\fR
. .
.br .br
See the file COPYING for information of licensing and distribution\. See the file COPYING for information of licensing and distribution\.
. .
.SH "SEE ALSO" .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) ronn(1) \fIhttp://rtomayko\.github\.com/ronn/ronn\.1\fR, ronn(5) \fIhttp://rtomayko\.github\.com/ronn/ronn\.5\fR, markdown(5)
7 changes: 6 additions & 1 deletion ronn.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s| Gem::Specification.new do |s|
s.name = 'ronn' s.name = 'ronn'
s.version = '0.6.0' s.version = '0.6.6'
s.date = '2010-06-13' s.date = '2010-06-13'


s.description = "The opposite of roff" s.description = "The opposite of roff"
Expand Down Expand Up @@ -31,6 +31,7 @@ Gem::Specification.new do |s|
lib/ronn/template/print.css lib/ronn/template/print.css
lib/ronn/template/screen.css lib/ronn/template/screen.css
lib/ronn/template/toc.css lib/ronn/template/toc.css
lib/ronn/utils.rb
man/ronn.1 man/ronn.1
man/ronn.1.ronn man/ronn.1.ronn
man/ronn.5 man/ronn.5
Expand Down Expand Up @@ -58,12 +59,16 @@ Gem::Specification.new do |s|
test/middle_paragraph.html test/middle_paragraph.html
test/middle_paragraph.roff test/middle_paragraph.roff
test/middle_paragraph.ronn test/middle_paragraph.ronn
test/missing_spaces.roff
test/missing_spaces.ronn
test/ronn_test.rb test/ronn_test.rb
test/section_reference_links.html test/section_reference_links.html
test/section_reference_links.roff test/section_reference_links.roff
test/section_reference_links.ronn test/section_reference_links.ronn
test/titleless_document.html test/titleless_document.html
test/titleless_document.ronn test/titleless_document.ronn
test/underline_spacing_test.roff
test/underline_spacing_test.ronn
] ]
# = MANIFEST = # = MANIFEST =


Expand Down

0 comments on commit 731fad6

Please sign in to comment.