Skip to content

Commit

Permalink
prepare release and bump version to 0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
godfat committed Oct 31, 2011
1 parent 97d717c commit a34a21d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGES.md
@@ -1,5 +1,19 @@
# CHANGES

## rest-more 0.7.1 -- 2011-10-31

### Bugs fixes

* [Mixi] Fixed `RC::Mixi.new(:access_token => 'access_token')` which is not
working before.

### Enhancement

* [Mixi] `RC::Mixi#authorize!` now works like `RC::Facebook#authorize!`
That is now we pass code like this: `mixi.authorize!(:code => code)`

* `RestCore::Config` and `RestCore::RailsUtilUtil` are now moved to rest-more

## rest-more 0.7.0 -- 2011-10-08

* Extracted from [rest-core][] 0.4.0
Expand Down
2 changes: 1 addition & 1 deletion lib/rest-more/version.rb
@@ -1,4 +1,4 @@

module RestMore
VERSION = '0.7.0'
VERSION = '0.7.1'
end
8 changes: 6 additions & 2 deletions rest-more.gemspec
Expand Up @@ -2,13 +2,13 @@

Gem::Specification.new do |s|
s.name = "rest-more"
s.version = "0.7.0"
s.version = "0.7.1"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = [
"Cardinal Blue",
"Lin Jen-Shin (godfat)"]
s.date = "2011-10-08"
s.date = "2011-10-31"
s.description = "Various REST clients such as Facebook and Twitter built with [rest-core][]\n\n[rest-core]: https://github.com/cardinalblue/rest-core"
s.email = ["dev (XD) cardinalblue.com"]
s.files = [
Expand Down Expand Up @@ -71,6 +71,8 @@ Gem::Specification.new do |s|
"lib/rest-core/client/simple.rb",
"lib/rest-core/client/twitter.rb",
"lib/rest-core/client/universal.rb",
"lib/rest-core/util/config.rb",
"lib/rest-core/util/rails_util_util.rb",
"lib/rest-more.rb",
"lib/rest-more/test.rb",
"lib/rest-more/version.rb",
Expand All @@ -92,6 +94,7 @@ Gem::Specification.new do |s|
"test/client/facebook/test_serialize.rb",
"test/client/facebook/test_timeout.rb",
"test/client/flurry/test_metrics.rb",
"test/client/mixi/test_api.rb",
"test/client/twitter/test_api.rb"]
s.homepage = "https://github.com/cardinalblue/rest-more"
s.require_paths = ["lib"]
Expand All @@ -112,6 +115,7 @@ Gem::Specification.new do |s|
"test/client/facebook/test_serialize.rb",
"test/client/facebook/test_timeout.rb",
"test/client/flurry/test_metrics.rb",
"test/client/mixi/test_api.rb",
"test/client/twitter/test_api.rb"]

if s.respond_to? :specification_version then
Expand Down

0 comments on commit a34a21d

Please sign in to comment.