File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,6 @@ More information about possible parameters can be found at https://docs.api.ai/d
80
80
81
81
#Changelog
82
82
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
Original file line number Diff line number Diff line change @@ -18,9 +18,10 @@ Gem::Specification.new do |spec|
18
18
spec . test_files = spec . files . grep ( %r{^(test|spec|features)/} )
19
19
spec . require_paths = [ 'lib' ]
20
20
21
+ spec . required_ruby_version = '~> 2.0'
22
+
21
23
spec . add_development_dependency 'bundler' , '~> 1.7'
22
24
spec . add_development_dependency 'rake' , '~> 10.0'
23
25
spec . add_dependency 'http' , '~> 0.9.4'
24
- spec . add_dependency 'http-form_data' , '~> 1.0'
25
26
26
27
end
Original file line number Diff line number Diff line change 1
1
module ApiAiRuby
2
2
class Constants
3
- VERSION = '1.1.3 '
3
+ VERSION = '1.1.4 '
4
4
DEFAULT_BASE_URL = 'https://api.api.ai/v1/'
5
- DEFAULT_API_VERSION = '20150204 '
5
+ DEFAULT_API_VERSION = '20150910 '
6
6
DEFAULT_CLIENT_LANG = 'en'
7
7
end
8
8
end
You can’t perform that action at this time.
0 commit comments