Skip to content

Commit 2df912f

Browse files
Version Bump v4.0.6: TLS certificate fix
1 parent 296e9e4 commit 2df912f

4 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
# Change Log
22
All notable changes to this project will be documented in this file.
33

4-
## [4.0.5] - 2016-10-18 ##
4+
## [4.0.7] - 2016-1-25 ##
5+
### Fixes
6+
- [Pull Request #7](https://github.com/sendgrid/ruby-http-client/pull/7)
7+
- Fixes [issue #6](https://github.com/sendgrid/ruby-http-client/issues/6): TLS certificates not verified
8+
- Thanks to [Koen Rouwhorst](https://github.com/koenrh) for the pull request!
9+
10+
## [4.0.6] - 2016-10-18 ##
511
### Added
612
- Pull #113: Fix Travis CI Prism functionality for non-SendGrid contributors, update deprecated File.exists
713

lib/sendgrid/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module SendGrid
2-
VERSION = '4.0.6'
2+
VERSION = '4.0.7'
33
end

sendgrid-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
1717
spec.test_files = spec.files.grep(/^(test|spec|features)/)
1818
spec.require_paths = ['lib']
1919

20-
spec.add_dependency 'ruby_http_client', '~> 3.0.0'
20+
spec.add_dependency 'ruby_http_client', '~> 3.0.1'
2121
spec.add_development_dependency 'rake', '~> 0'
2222
spec.add_development_dependency 'minitest'
2323
end

test/sendgrid/test_sendgrid-ruby.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_init
5353
')
5454
assert_equal(test_headers, sg.request_headers)
5555
assert_equal("v3", sg.version)
56-
assert_equal("4.0.6", SendGrid::VERSION)
56+
assert_equal("4.0.7", SendGrid::VERSION)
5757
assert_instance_of(SendGrid::Client, sg.client)
5858
end
5959

0 commit comments

Comments
 (0)