Skip to content

Commit

Permalink
v0.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ianwhite committed Jun 20, 2012
1 parent 3be7044 commit e19e9a3
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock.development
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
orm_adapter (0.1.0)
orm_adapter (0.2.0)

GEM
remote: http://rubygems.org/
Expand Down
5 changes: 3 additions & 2 deletions History.txt
@@ -1,7 +1,8 @@
== 0.2.0

* Normalise :id in find conditions [Tim Galeckas]

* Normalise :id in find conditions [Tim Galeckas, Ian White]
* Allow find_first and find_all to take no arguments [Tim Galeckas, Ian White]

== 0.1.0

* Add #destroy(object) to the API [Fred Wu]
Expand Down
1 change: 1 addition & 0 deletions README.rdoc
Expand Up @@ -16,6 +16,7 @@ Provides a single point of entry for popular ruby ORMs. Its target audience is
user_model.find_first(:name => 'fred') # find first fred
user_model.find_first(:level => 'awesome', :id => 23)
# find user 23, only if it's level is awesome
user_model.find_all # find all users
user_model.find_all(:name => 'fred') # find all freds
user_model.find_all(:order => :name) # find all freds, ordered by name
user_model.create!(:name => 'fred') # create a fred
Expand Down
2 changes: 1 addition & 1 deletion lib/orm_adapter/version.rb
@@ -1,3 +1,3 @@
module OrmAdapter
VERSION = "0.1.0"
VERSION = "0.2.0"
end

0 comments on commit e19e9a3

Please sign in to comment.