Skip to content

Commit 2cd607a

Browse files
committed
Merge pull request #97 from kerrizor/release-v1.2.0
Release version 1.2.0
2 parents 7708434 + f24f9b0 commit 2cd607a

File tree

4 files changed

+25
-17
lines changed

4 files changed

+25
-17
lines changed

CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
1.2.0
2+
-----
3+
4+
* Fixed bug that prevented generation of diagrams on newer versions of OSX
5+
* Added ability to store CLI configuration options in a config file, both a global version (in the user's home directory) as well as a per-project local versions
6+
* Added a Code of Conduct for the project
7+
18
1.1.0
29
-----
310

@@ -8,6 +15,7 @@
815
Neil Chambers).
916
* Add only/exclude to CLI (contributed by Dru Ibarra).
1017

18+
1119
1.0.0
1220
-----
1321

Gemfile.lock

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
PATH
22
remote: .
33
specs:
4-
rails-erd (1.1.0)
5-
activerecord (>= 3.0)
6-
activesupport (>= 3.0)
4+
rails-erd (1.2.0)
5+
activerecord (~> 3.2)
6+
activesupport (~> 3.2)
77
choice (~> 0.1.6)
88
ruby-graphviz (~> 1.0.4)
99

1010
GEM
1111
remote: http://rubygems.org/
1212
specs:
13-
activemodel (3.2.11)
14-
activesupport (= 3.2.11)
13+
activemodel (3.2.19)
14+
activesupport (= 3.2.19)
1515
builder (~> 3.0.0)
16-
activerecord (3.2.11)
17-
activemodel (= 3.2.11)
18-
activesupport (= 3.2.11)
16+
activerecord (3.2.19)
17+
activemodel (= 3.2.19)
18+
activesupport (= 3.2.19)
1919
arel (~> 3.0.2)
2020
tzinfo (~> 0.3.29)
2121
activerecord-jdbc-adapter (1.2.5)
2222
activerecord-jdbcsqlite3-adapter (1.2.5)
2323
activerecord-jdbc-adapter (~> 1.2.5)
2424
jdbc-sqlite3 (~> 3.7.2)
25-
activesupport (3.2.11)
26-
i18n (~> 0.6)
25+
activesupport (3.2.19)
26+
i18n (~> 0.6, >= 0.6.4)
2727
multi_json (~> 1.0)
28-
arel (3.0.2)
28+
arel (3.0.3)
2929
bouncy-castle-java (1.5.0146.1)
3030
builder (3.0.4)
3131
choice (0.1.6)
32-
i18n (0.6.1)
32+
i18n (0.6.11)
3333
jdbc-sqlite3 (3.7.2)
3434
jruby-openssl (0.8.2)
3535
bouncy-castle-java (>= 1.5.0146.1)
36-
multi_json (1.5.0)
36+
multi_json (1.10.1)
3737
rake (10.0.3)
3838
redcarpet (2.2.2)
3939
ruby-graphviz (1.0.8)
4040
sqlite3 (1.3.7)
41-
tzinfo (0.3.35)
41+
tzinfo (0.3.42)
4242
yard (0.8.3)
4343

4444
PLATFORMS

lib/rails_erd/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module RailsERD
2-
VERSION = "1.1.0"
2+
VERSION = "1.2.0"
33
BANNER = "RailsERD #{VERSION}"
44
end

rails-erd.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Gem::Specification.new do |s|
1414

1515
s.rubyforge_project = "rails-erd"
1616

17-
s.add_runtime_dependency "activerecord", [">= 3.0"]
18-
s.add_runtime_dependency "activesupport", [">= 3.0"]
17+
s.add_runtime_dependency "activerecord", ["~> 3.2"]
18+
s.add_runtime_dependency "activesupport", ["~> 3.2"]
1919
s.add_runtime_dependency "ruby-graphviz", ["~> 1.0.4"]
2020
s.add_runtime_dependency "choice", ["~> 0.1.6"]
2121

0 commit comments

Comments
 (0)