diff options
author | Emilio Tagua <miloops@gmail.com> | 2010-03-10 18:51:01 -0300 |
---|---|---|
committer | Emilio Tagua <miloops@gmail.com> | 2010-03-10 18:51:01 -0300 |
commit | 54359f00b10f76e80b134dfdae973a5208da32f1 (patch) | |
tree | 497d9b8209af12ee14008f123155a0d50ccdaec4 | |
parent | b706f690b611d647aae15a85caa19d167814ae3c (diff) | |
download | rails-54359f00b10f76e80b134dfdae973a5208da32f1.tar.gz rails-54359f00b10f76e80b134dfdae973a5208da32f1.tar.bz2 rails-54359f00b10f76e80b134dfdae973a5208da32f1.zip |
Release v0.3.0
-rw-r--r-- | History.txt | 8 | ||||
-rw-r--r-- | arel.gemspec | 2 | ||||
-rw-r--r-- | lib/arel.rb | 4 | ||||
-rw-r--r-- | spec/arel/engines/sql/unit/primitives/attribute_spec.rb | 2 |
4 files changed, 12 insertions, 4 deletions
diff --git a/History.txt b/History.txt index 36dde74e4e..470e988b22 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,11 @@ +== 0.3.0 / 2010-02-05 + +* Enhancements + + * Introduced "SQL compilers" for query generation. + * Added support for Oracle (Raimonds Simanovskis) and IBM/DB (Praveen Devarao). + * Improvements to give better support to ActiveRecord. + == 0.2.1 / 2010-02-05 * Enhancements diff --git a/arel.gemspec b/arel.gemspec index 4e1a52d077..cebbd7642b 100644 --- a/arel.gemspec +++ b/arel.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = %q{arel} - s.version = "0.2.1" + s.version = "0.3.0" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Bryan Helmkamp", "Nick Kallen", "Emilio Tagua"] diff --git a/lib/arel.rb b/lib/arel.rb index 36fd961188..305ae99181 100644 --- a/lib/arel.rb +++ b/lib/arel.rb @@ -7,5 +7,5 @@ module Arel require 'arel/engines' autoload :Session, 'arel/session' - VERSION = "0.2.1" -end
\ No newline at end of file + VERSION = "0.3.0" +end diff --git a/spec/arel/engines/sql/unit/primitives/attribute_spec.rb b/spec/arel/engines/sql/unit/primitives/attribute_spec.rb index 8daa0d9fd5..c467d902ad 100644 --- a/spec/arel/engines/sql/unit/primitives/attribute_spec.rb +++ b/spec/arel/engines/sql/unit/primitives/attribute_spec.rb @@ -9,7 +9,7 @@ module Arel describe '#column' do it "returns the corresponding column in the relation" do - @attribute.column.should == @relation.column_for(@attribute) + @attribute.column.should == @relation.column_for(@attribute) end end |