Commit 9b72c693 by cuong.tran

Prepare for v2.6.6 release

parent 026cee5a
== 2.6.6
* Makes it possible to wrap annotations, #225
* Fix single model generation, #214
* Fix default value for Rails 4.2, #212
* Don't crash on inherited models in subdirectories, #232
* Process model_dir in rake task, #197
== 2.6.4 == 2.6.4
* Skip "models/concerns", #194 * Skip "models/concerns", #194
* Fix #173 where annotate says "Nothing to annotate" in rails 4.2 * Fix #173 where annotate says "Nothing to annotate" in rails 4.2
......
...@@ -51,7 +51,7 @@ Also, if you pass the -r option, it'll annotate routes.rb with the output of ...@@ -51,7 +51,7 @@ Also, if you pass the -r option, it'll annotate routes.rb with the output of
Into Gemfile from rubygems.org: Into Gemfile from rubygems.org:
gem 'annotate', '~> 2.6.5' gem 'annotate', '~> 2.6.6'
Into Gemfile from Github: Into Gemfile from Github:
......
...@@ -25,7 +25,7 @@ Gem::Specification.new do |s| ...@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
s.specification_version = 4 s.specification_version = 4
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rake>, [">= 0.8.7"]) s.add_runtime_dependency(%q<rake>, ["~> 10.4.2", ">= 10.4.2"])
s.add_runtime_dependency(%q<activerecord>, [">= 2.3.0"]) s.add_runtime_dependency(%q<activerecord>, [">= 2.3.0"])
else else
s.add_dependency(%q<rake>, [">= 0.8.7"]) s.add_dependency(%q<rake>, [">= 0.8.7"])
......
module Annotate module Annotate
def self.version def self.version
'2.6.5' '2.6.6'
end end
end end
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment