Skip to content

Commit b033ae8

Browse files
Version Bump v4.3.2: #161: Fixed problematic Sinatra dependency
1 parent b518327 commit b033ae8

5 files changed

Lines changed: 10 additions & 3 deletions

File tree

CHANGELOG.md

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

4+
## [4.3.2] - 2017-5-1 ##
5+
### Fixes
6+
- #161: Fixed problematic Sinatra dependency
7+
- 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.
8+
- Thanks to [Sebastian Skałacki](https://github.com/skalee) for the pull request!
9+
410
## [4.3.1] - 2017-4-12 ##
511
### Fixes
612
- #160: Updated sinatra version to 2.0

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ gem install sendgrid-ruby
6565
## Dependencies
6666

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

6970
<a name="quick_start"></a>
7071
# Quick Start

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.3.1'
2+
VERSION = '4.3.2'
33
end

sendgrid-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
99
spec.authors = ['Elmer Thomas', 'Robin Johnson', 'Eddie Zaneski']
1010
spec.email = 'dx@sendgrid.com'
1111
spec.summary = 'Official SendGrid Gem'
12-
spec.description = 'Interact with SendGrids API in native Ruby'
12+
spec.description = 'Official SendGrid Gem to Interact with SendGrids API in native Ruby'
1313
spec.homepage = 'http://github.com/sendgrid/sendgrid-ruby'
1414
spec.license = 'MIT'
1515
spec.files = `git ls-files -z`.split("\x0")

test/sendgrid/test_sendgrid-ruby.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def test_init
5555
')
5656
assert_equal(test_headers, sg.request_headers)
5757
assert_equal("v3", sg.version)
58-
assert_equal("4.3.1", SendGrid::VERSION)
58+
assert_equal("4.3.2", SendGrid::VERSION)
5959
assert_instance_of(SendGrid::Client, sg.client)
6060
end
6161

0 commit comments

Comments
 (0)