Skip to content

Commit

Permalink
Version Bump v4.0.6: TLS certificate fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Jan 25, 2017
1 parent 296e9e4 commit 2df912f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion lib/sendgrid/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module SendGrid
VERSION = '4.0.6'
VERSION = '4.0.7'
end
2 changes: 1 addition & 1 deletion sendgrid-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion test/sendgrid/test_sendgrid-ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2df912f

Please sign in to comment.