Skip to content

Commit 9b72c69

Browse files
committed
Prepare for v2.6.6 release
1 parent 026cee5 commit 9b72c69

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

CHANGELOG.rdoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
== 2.6.6
2+
* Makes it possible to wrap annotations, #225
3+
* Fix single model generation, #214
4+
* Fix default value for Rails 4.2, #212
5+
* Don't crash on inherited models in subdirectories, #232
6+
* Process model_dir in rake task, #197
7+
18
== 2.6.4
29
* Skip "models/concerns", #194
310
* Fix #173 where annotate says "Nothing to annotate" in rails 4.2

README.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Also, if you pass the -r option, it'll annotate routes.rb with the output of
5151

5252
Into Gemfile from rubygems.org:
5353

54-
gem 'annotate', '~> 2.6.5'
54+
gem 'annotate', '~> 2.6.6'
5555

5656
Into Gemfile from Github:
5757

annotate.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gem::Specification.new do |s|
2525
s.specification_version = 4
2626

2727
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
28-
s.add_runtime_dependency(%q<rake>, [">= 0.8.7"])
28+
s.add_runtime_dependency(%q<rake>, ["~> 10.4.2", ">= 10.4.2"])
2929
s.add_runtime_dependency(%q<activerecord>, [">= 2.3.0"])
3030
else
3131
s.add_dependency(%q<rake>, [">= 0.8.7"])

lib/annotate/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Annotate
22
def self.version
3-
'2.6.5'
3+
'2.6.6'
44
end
55
end

0 commit comments

Comments
 (0)