Skip to content

Commit

Permalink
Version Bump v4.0.4: Pull #72: remove ruby 2.2 requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Sep 15, 2016
1 parent 762d690 commit 417eb48
Show file tree
Hide file tree
Showing 5 changed files with 235 additions and 230 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [4.0.4] - 2016-09-15 ##
### Fixed
- Pull #72: [remove unnecessary ruby 2.2 requirement](https://github.com/sendgrid/sendgrid-ruby/pull/72)
- Thanks to [Billy Watson](https://github.com/billywatson) for the pull request!

## [4.0.3] - 2016-08-24 ##
### Added
- Table of Contents in the README
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ We appreciate your continued support, thank you!

## Prerequisites

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

## Setup Environment Variables
Expand Down
4 changes: 2 additions & 2 deletions examples/helpers/mail/example.rb
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def kitchen_sink
personalization.cc = Email.new(email: '[email protected]', name: 'Example User')
personalization.bcc = Email.new(email: '[email protected]', name: 'Example User')
personalization.bcc = Email.new(email: '[email protected]', name: 'Example User')
personalization.subject = 'Hello World from the Personalized SendGrid Python Library'
personalization.subject = 'Hello World from the Personalized SendGrid Ruby Library'
personalization.headers = Header.new(key: 'X-Test', value: 'True')
personalization.headers = Header.new(key: 'X-Mock', value: 'False')
personalization.substitutions = Substitution.new(key: '%name%', value: 'Example User')
Expand All @@ -46,7 +46,7 @@ def kitchen_sink
personalization2.cc = Email.new(email: '[email protected]', name: 'Example User')
personalization2.bcc = Email.new(email: '[email protected]', name: 'Example User')
personalization2.bcc = Email.new(email: '[email protected]', name: 'Example User')
personalization2.subject = 'Hello World from the Personalized SendGrid Python Library'
personalization2.subject = 'Hello World from the Personalized SendGrid Ruby Library'
personalization2.headers = Header.new(key: 'X-Test', value: 'True')
personalization2.headers = Header.new(key: 'X-Mock', value: 'False')
personalization2.substitutions = Substitution.new(key: '%name%', value: 'Example User')
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.3'
VERSION = '4.0.4'
end
Loading

0 comments on commit 417eb48

Please sign in to comment.