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
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
Original file line number Diff line number Diff 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
2627end
Original file line number Diff line number Diff line change 11module 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
88end
You can’t perform that action at this time.
0 commit comments