Fixed issue with version and moved version back to 0.3.0.

This commit is contained in:
Bob Aman 2011-10-15 11:21:21 +03:00
parent b08b19e8c3
commit 92ad3a293a
3 changed files with 19 additions and 7 deletions

View File

@ -1,3 +1,11 @@
== 0.3.0
* updated to use v1 of the discovery API
* updated to use httpadapter 1.0.0
* added OAuth 2 support to the command line tool
* renamed some switches in the command line tool
* added additional configuration capabilities
== 0.2.0 == 0.2.0
* updated to use v1 of the discovery API * updated to use v1 of the discovery API

View File

@ -17,6 +17,7 @@ require 'httpadapter'
require 'json' require 'json'
require 'stringio' require 'stringio'
require 'google/api_client/version'
require 'google/api_client/errors' require 'google/api_client/errors'
require 'google/api_client/environment' require 'google/api_client/environment'
require 'google/api_client/discovery' require 'google/api_client/discovery'

View File

@ -13,14 +13,17 @@
# limitations under the License. # limitations under the License.
module Google # Used to prevent the class/module from being loaded more than once
class APIClient if !defined?(::Google::APIClient::VERSION)
module VERSION module Google
MAJOR = 1 class APIClient
MINOR = 0 module VERSION
TINY = 0 MAJOR = 0
MINOR = 3
TINY = 0
STRING = [MAJOR, MINOR, TINY].join('.') STRING = [MAJOR, MINOR, TINY].join('.')
end
end end
end end
end end