Skip to content

Commit

Permalink
Version v4.2.0: #148, #146 Set api_key to empty string
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Apr 11, 2017
1 parent b407aec commit ba38c08
Show file tree
Hide file tree
Showing 4 changed files with 9 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.2.0] - 2016-4-10 ##
### Added
- #148: Set api_key to empty string
- This makes creating an API key for a SendGrid subuser who does not have an API key easier. See #146 for details
- Thanks to [Adam Beck](https://github.com/Gwash3189) for the pull request!

## [4.1.1] - 2016-4-6 ##
### Fixed
- #115 #134: Fix typos in initialize methods
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ We appreciate your continued support, thank you!

## Prerequisites

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

## Setup Environment Variables
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.1.1'
VERSION = '4.2.0'
end
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.1.1", SendGrid::VERSION)
assert_equal("4.2.0", SendGrid::VERSION)
assert_instance_of(SendGrid::Client, sg.client)
end

Expand Down

0 comments on commit ba38c08

Please sign in to comment.