diff --git a/CHANGELOG.md b/CHANGELOG.md index 80989bd5..3a41d730 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,13 @@ # Change Log All notable changes to this project will be documented in this file. -## [4.0.5] - 2016-10-18 ## +## [4.0.7] - 2016-1-25 ## +### Fixes +- [Pull Request #7](https://github.com/sendgrid/ruby-http-client/pull/7) +- Fixes [issue #6](https://github.com/sendgrid/ruby-http-client/issues/6): TLS certificates not verified +- Thanks to [Koen Rouwhorst](https://github.com/koenrh) for the pull request! + +## [4.0.6] - 2016-10-18 ## ### Added - Pull #113: Fix Travis CI Prism functionality for non-SendGrid contributors, update deprecated File.exists diff --git a/lib/sendgrid/version.rb b/lib/sendgrid/version.rb index 00ee2f83..a199f037 100644 --- a/lib/sendgrid/version.rb +++ b/lib/sendgrid/version.rb @@ -1,3 +1,3 @@ module SendGrid - VERSION = '4.0.6' + VERSION = '4.0.7' end \ No newline at end of file diff --git a/sendgrid-ruby.gemspec b/sendgrid-ruby.gemspec index 66339d2a..b2d16453 100644 --- a/sendgrid-ruby.gemspec +++ b/sendgrid-ruby.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |spec| spec.test_files = spec.files.grep(/^(test|spec|features)/) spec.require_paths = ['lib'] - spec.add_dependency 'ruby_http_client', '~> 3.0.0' + spec.add_dependency 'ruby_http_client', '~> 3.0.1' spec.add_development_dependency 'rake', '~> 0' spec.add_development_dependency 'minitest' end diff --git a/test/sendgrid/test_sendgrid-ruby.rb b/test/sendgrid/test_sendgrid-ruby.rb index 36fb8bde..a4dfc5f2 100644 --- a/test/sendgrid/test_sendgrid-ruby.rb +++ b/test/sendgrid/test_sendgrid-ruby.rb @@ -53,7 +53,7 @@ def test_init ') assert_equal(test_headers, sg.request_headers) assert_equal("v3", sg.version) - assert_equal("4.0.6", SendGrid::VERSION) + assert_equal("4.0.7", SendGrid::VERSION) assert_instance_of(SendGrid::Client, sg.client) end