Skip to content

Commit

Permalink
Merge pull request #97 from kerrizor/release-v1.2.0
Browse files Browse the repository at this point in the history
Release version 1.2.0
  • Loading branch information
kerrizor committed Dec 16, 2014
2 parents 7708434 + f24f9b0 commit 2cd607a
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 17 deletions.
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.2.0
-----

* Fixed bug that prevented generation of diagrams on newer versions of OSX
* 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
* Added a Code of Conduct for the project

1.1.0
-----

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


1.0.0
-----

Expand Down
28 changes: 14 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,44 +1,44 @@
PATH
remote: .
specs:
rails-erd (1.1.0)
activerecord (>= 3.0)
activesupport (>= 3.0)
rails-erd (1.2.0)
activerecord (~> 3.2)
activesupport (~> 3.2)
choice (~> 0.1.6)
ruby-graphviz (~> 1.0.4)

GEM
remote: http://rubygems.org/
specs:
activemodel (3.2.11)
activesupport (= 3.2.11)
activemodel (3.2.19)
activesupport (= 3.2.19)
builder (~> 3.0.0)
activerecord (3.2.11)
activemodel (= 3.2.11)
activesupport (= 3.2.11)
activerecord (3.2.19)
activemodel (= 3.2.19)
activesupport (= 3.2.19)
arel (~> 3.0.2)
tzinfo (~> 0.3.29)
activerecord-jdbc-adapter (1.2.5)
activerecord-jdbcsqlite3-adapter (1.2.5)
activerecord-jdbc-adapter (~> 1.2.5)
jdbc-sqlite3 (~> 3.7.2)
activesupport (3.2.11)
i18n (~> 0.6)
activesupport (3.2.19)
i18n (~> 0.6, >= 0.6.4)
multi_json (~> 1.0)
arel (3.0.2)
arel (3.0.3)
bouncy-castle-java (1.5.0146.1)
builder (3.0.4)
choice (0.1.6)
i18n (0.6.1)
i18n (0.6.11)
jdbc-sqlite3 (3.7.2)
jruby-openssl (0.8.2)
bouncy-castle-java (>= 1.5.0146.1)
multi_json (1.5.0)
multi_json (1.10.1)
rake (10.0.3)
redcarpet (2.2.2)
ruby-graphviz (1.0.8)
sqlite3 (1.3.7)
tzinfo (0.3.35)
tzinfo (0.3.42)
yard (0.8.3)

PLATFORMS
Expand Down
2 changes: 1 addition & 1 deletion lib/rails_erd/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module RailsERD
VERSION = "1.1.0"
VERSION = "1.2.0"
BANNER = "RailsERD #{VERSION}"
end
4 changes: 2 additions & 2 deletions rails-erd.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ Gem::Specification.new do |s|

s.rubyforge_project = "rails-erd"

s.add_runtime_dependency "activerecord", [">= 3.0"]
s.add_runtime_dependency "activesupport", [">= 3.0"]
s.add_runtime_dependency "activerecord", ["~> 3.2"]
s.add_runtime_dependency "activesupport", ["~> 3.2"]
s.add_runtime_dependency "ruby-graphviz", ["~> 1.0.4"]
s.add_runtime_dependency "choice", ["~> 0.1.6"]

Expand Down

0 comments on commit 2cd607a

Please sign in to comment.