From 1a9faa3501fca2ccb111c90678ac55f0f71bf85b Mon Sep 17 00:00:00 2001 From: Ryan Tomayko Date: Sun, 19 Jun 2011 06:27:35 -0700 Subject: [PATCH] 0.8 release --- CHANGES.md | 10 ++++++++++ lib/rocco.rb | 2 +- rocco.gemspec | 6 +++++- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 98b77cc..123832c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,16 @@ CHANGES ======= +0.8 (2011-06-19) +---------------- + +https://github.com/rtomayko/rocco/compare/0.7...0.8 + +0.7 (2011-05-22) +---------------- + +https://github.com/rtomayko/rocco/compare/0.6...0.7 + 0.6 (2011-03-05) ---------------- diff --git a/lib/rocco.rb b/lib/rocco.rb index de5c71b..428c796 100644 --- a/lib/rocco.rb +++ b/lib/rocco.rb @@ -72,7 +72,7 @@ # to `nil` (that is, Mustache will use `./lib/rocco/layout.mustache`)_. # class Rocco - VERSION = '0.7' + VERSION = '0.8' def initialize(filename, sources=[], options={}, &block) @file = filename diff --git a/rocco.gemspec b/rocco.gemspec index 780082c..59f3875 100644 --- a/rocco.gemspec +++ b/rocco.gemspec @@ -8,7 +8,7 @@ Gem::Specification.new do |s| s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.name = 'rocco' - s.version = '0.7' + s.version = '0.8' s.date = '2011-06-19' s.description = "Docco in Ruby" @@ -25,6 +25,7 @@ Gem::Specification.new do |s| Rakefile bin/rocco lib/rocco.rb + lib/rocco/comment_styles.rb lib/rocco/layout.mustache lib/rocco/layout.rb lib/rocco/tasks.rb @@ -34,10 +35,13 @@ Gem::Specification.new do |s| test/helper.rb test/suite.rb test/test_basics.rb + test/test_block_comment_styles.rb test/test_block_comments.rb test/test_comment_normalization.rb test/test_commentchar_detection.rb test/test_descriptive_section_names.rb + test/test_docblock_annotations.rb + test/test_heredoc.rb test/test_language_detection.rb test/test_reported_issues.rb test/test_skippable_lines.rb