Skip to content

Commit

Permalink
Version Bump v4.3.2: #161: Fixed problematic Sinatra dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed May 2, 2017
1 parent b518327 commit b033ae8
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.

## [4.3.2] - 2017-5-1 ##
### Fixes
- #161: Fixed problematic Sinatra dependency
- Brings back Rails 4 compatibility (and Rack 1.x applications, in general), also removes release candidate version constraint (both broken in #160). Moreover, ensures that tests are run against two major Sinatra versions, which should protect from compatibility issues in future, somewhat. Related issue: #159.
- Thanks to [Sebastian Skałacki](https://github.com/skalee) for the pull request!

## [4.3.1] - 2017-4-12 ##
### Fixes
- #160: Updated sinatra version to 2.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ gem install sendgrid-ruby
## Dependencies

- [Ruby-HTTP-Client](https://github.com/sendgrid/ruby-http-client)
- [Sinatra](http://www.sinatrarb.com/) - this is only needed if you plan to process [Inbound Email](#inbound).

<a name="quick_start"></a>
# Quick Start
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.3.1'
VERSION = '4.3.2'
end
2 changes: 1 addition & 1 deletion sendgrid-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.authors = ['Elmer Thomas', 'Robin Johnson', 'Eddie Zaneski']
spec.email = '[email protected]'
spec.summary = 'Official SendGrid Gem'
spec.description = 'Interact with SendGrids API in native Ruby'
spec.description = 'Official SendGrid Gem to Interact with SendGrids API in native Ruby'
spec.homepage = 'http://github.com/sendgrid/sendgrid-ruby'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0")
Expand Down
2 changes: 1 addition & 1 deletion test/sendgrid/test_sendgrid-ruby.rb
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_init
')
assert_equal(test_headers, sg.request_headers)
assert_equal("v3", sg.version)
assert_equal("4.3.1", SendGrid::VERSION)
assert_equal("4.3.2", SendGrid::VERSION)
assert_instance_of(SendGrid::Client, sg.client)
end

Expand Down

0 comments on commit b033ae8

Please sign in to comment.