diff --git a/CHANGELOG.md b/CHANGELOG.md index 44d67b01a..efb58593a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.6.2 + +* Update signet to 0.4.6 to support server side continuation of postmessage + auth flows. + # 0.6.1 * Fix impersonation with service accounts diff --git a/Gemfile b/Gemfile index 430505a10..d0765f8c4 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,7 @@ source :rubygems gemspec -gem 'signet', '>= 0.4.4' +gem 'signet', '>= 0.4.5' gem 'addressable', '>= 2.3.2' gem 'uuidtools', '>= 2.1.0' gem 'autoparse', '>= 0.3.2' @@ -15,11 +15,7 @@ gem 'jruby-openssl', :platforms => :jruby group :development do gem 'launchy', '>= 2.1.1' gem 'yard' - if File.exist?('/usr/bin/gcc-4.2') - # Not a critically important gem to have around. - # If it's not going to build, skip it. - gem 'redcarpet' - end + gem 'kramdown' end group :examples do diff --git a/README.md b/README.md index 048723fb0..b88c3e460 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@
Homepage
http://code.google.com/p/google-api-ruby-client
-
Authoris
Bob Aman, Steven Bazyl
+
Authors
Bob Aman, Steven Bazyl
Copyright
Copyright © 2011 Google, Inc.
License
Apache 2.0
diff --git a/lib/google/api_client/version.rb b/lib/google/api_client/version.rb index b200bccec..24a0bd668 100644 --- a/lib/google/api_client/version.rb +++ b/lib/google/api_client/version.rb @@ -22,7 +22,7 @@ if !defined?(::Google::APIClient::VERSION) module VERSION MAJOR = 0 MINOR = 6 - TINY = 1 + TINY = 2 STRING = [MAJOR, MINOR, TINY].join('.') end end