diff --git a/CHANGELOG.md b/CHANGELOG.md index a37b0fef..f9b842eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 6dcb51ac..5b1b28e0 100644 --- a/README.md +++ b/README.md @@ -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). # Quick Start diff --git a/lib/sendgrid/version.rb b/lib/sendgrid/version.rb index 005e2be9..27ff3ec1 100644 --- a/lib/sendgrid/version.rb +++ b/lib/sendgrid/version.rb @@ -1,3 +1,3 @@ module SendGrid - VERSION = '4.3.1' + VERSION = '4.3.2' end diff --git a/sendgrid-ruby.gemspec b/sendgrid-ruby.gemspec index ef80c7e5..3567910d 100644 --- a/sendgrid-ruby.gemspec +++ b/sendgrid-ruby.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |spec| spec.authors = ['Elmer Thomas', 'Robin Johnson', 'Eddie Zaneski'] spec.email = 'dx@sendgrid.com' 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") diff --git a/test/sendgrid/test_sendgrid-ruby.rb b/test/sendgrid/test_sendgrid-ruby.rb index 1be72934..70763d98 100644 --- a/test/sendgrid/test_sendgrid-ruby.rb +++ b/test/sendgrid/test_sendgrid-ruby.rb @@ -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