Fixed issue with version and moved version back to 0.3.0.
This commit is contained in:
parent
f59696cd8b
commit
2dcdec1191
|
@ -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
|
||||||
|
|
|
@ -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'
|
||||||
|
|
|
@ -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
|
||||||
|
if !defined?(::Google::APIClient::VERSION)
|
||||||
|
module Google
|
||||||
class APIClient
|
class APIClient
|
||||||
module VERSION
|
module VERSION
|
||||||
MAJOR = 1
|
MAJOR = 0
|
||||||
MINOR = 0
|
MINOR = 3
|
||||||
TINY = 0
|
TINY = 0
|
||||||
|
|
||||||
STRING = [MAJOR, MINOR, TINY].join('.')
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue