diff options
-rw-r--r-- | History.txt | 6 | ||||
-rw-r--r-- | Thorfile | 2 | ||||
-rw-r--r-- | arel.gemspec | 6 | ||||
-rw-r--r-- | lib/arel.rb | 2 |
4 files changed, 9 insertions, 7 deletions
diff --git a/History.txt b/History.txt index acfff6c606..8267acb031 100644 --- a/History.txt +++ b/History.txt @@ -1,8 +1,8 @@ -== Git - -* 1 major enhancement +== 0.2.0 / 2010-01-31 * Ruby 1.9 compatibility + * Many improvements to support the Arel integration into ActiveRecord (see `git log v0.1.0..v0.2.0`) + * Thanks to Emilio Tagua and Pratik Naik for many significant contributions! == 0.1.0 / 2009-08-06 @@ -1,3 +1,5 @@ +require "active_support" + module GemHelpers def generate_gemspec diff --git a/arel.gemspec b/arel.gemspec index a7ae71bd1d..77c5d181ef 100644 --- a/arel.gemspec +++ b/arel.gemspec @@ -2,11 +2,11 @@ Gem::Specification.new do |s| s.name = %q{arel} - s.version = "0.2.pre" + s.version = "0.2.0" - s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= + s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Bryan Helmkamp", "Nick Kallen"] - s.date = %q{2009-12-29} + s.date = %q{2010-01-31} s.description = %q{Arel is a Relational Algebra for Ruby. It 1) simplifies the generation complex of SQL queries and it 2) adapts to various RDBMS systems. It is intended to be a framework framework; that is, you can build your own ORM with it, focusing on diff --git a/lib/arel.rb b/lib/arel.rb index 706c5af93b..286c7a1ed8 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.pre" + VERSION = "0.2.0" end
\ No newline at end of file |