Skip to content

Commit 8dba852

Browse files
Version Bump: 4.3.3: #157: Specify required ruby version as '>= 2.2'
1 parent 732715a commit 8dba852

5 files changed

Lines changed: 10 additions & 4 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.3] - 2017-5-2
5+
### Update
6+
- #157: Specify required ruby version as '>= 2.2'
7+
- This library does not support [Ruby 2.1 or below](https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/).
8+
- Thanks to [Ryunosuke Sato](https://github.com/tricknotes) for the pull request!
9+
410
## [4.3.2] - 2017-5-1 ##
511
### Fixes
612
- #161: Fixed problematic Sinatra dependency

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ We appreciate your continued support, thank you!
3030

3131
## Prerequisites
3232

33-
- Ruby version 2.2+
33+
- Ruby version >= 2.2
3434
- The SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-ruby)
3535

3636
## Setup Environment Variables

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

sendgrid-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212
spec.description = 'Official SendGrid Gem to Interact with SendGrids API in native Ruby'
1313
spec.homepage = 'http://github.com/sendgrid/sendgrid-ruby'
1414

15-
spec.required_ruby_version = '>= 2.0'
15+
spec.required_ruby_version = '>= 2.2'
1616

1717
spec.license = 'MIT'
1818
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.2", SendGrid::VERSION)
58+
assert_equal("4.3.3", SendGrid::VERSION)
5959
assert_instance_of(SendGrid::Client, sg.client)
6060
end
6161

0 commit comments

Comments
 (0)