Skip to content

Commit 08ca28b

Browse files
committed
[!] NOTICKET: updated default API version and removed unused dependency
1 parent 371a636 commit 08ca28b

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,6 @@ More information about possible parameters can be found at https://docs.api.ai/d
8080

8181
#Changelog
8282

83-
1.1.3 - fixed non-correctly serialized parameters in new contexts during query send process
84-
85-
1.1.2 - fixed compatibility with ruby version less then 2.1.6
83+
* 1.1.4 - removed unused dependency and updated default API version
84+
* 1.1.3 - fixed non-correctly serialized parameters in new contexts during query send process
85+
* 1.1.2 - fixed compatibility with ruby version less then 2.1.6

api-ai-ruby.gemspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ Gem::Specification.new do |spec|
1818
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
1919
spec.require_paths = ['lib']
2020

21+
spec.required_ruby_version = '~> 2.0'
22+
2123
spec.add_development_dependency 'bundler', '~> 1.7'
2224
spec.add_development_dependency 'rake', '~> 10.0'
2325
spec.add_dependency 'http', '~> 0.9.4'
24-
spec.add_dependency 'http-form_data', '~> 1.0'
2526

2627
end

lib/api-ai-ruby/constants.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module ApiAiRuby
22
class Constants
3-
VERSION = '1.1.3'
3+
VERSION = '1.1.4'
44
DEFAULT_BASE_URL = 'https://api.api.ai/v1/'
5-
DEFAULT_API_VERSION = '20150204'
5+
DEFAULT_API_VERSION = '20150910'
66
DEFAULT_CLIENT_LANG = 'en'
77
end
88
end

0 commit comments

Comments
 (0)