Skip to content

Commit

Permalink
Version Bump v3.0.2: Relative import for mail/helper
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingserious committed Jun 15, 2016
1 parent 2a9cce0 commit 9397d95
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file.

## [3.0.2] - 2016-06-15 ##
### Added
- Relative import for mail/helper

## [3.0.1] - 2016-06-15 ##
### Added
- Add mail/send helper to the $LOAD_PATH, updated http client dependency
Expand Down
3 changes: 2 additions & 1 deletion lib/sendgrid-ruby.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Quickly and easily access the SendGrid API.
require 'ruby_http_client'
require_relative 'helpers/mail'

module SendGrid
# Initialize the HTTP client
Expand All @@ -14,7 +15,7 @@ class API
# currently only "v3" is supported
#
def initialize(api_key: nil, host: nil, request_headers: nil, version: nil)
@VERSION = '2.0.0'
@VERSION = '3.0.2'
@api_key = api_key
@host = host ? host : 'https://api.sendgrid.com'
@version = version ? version : 'v3'
Expand Down
2 changes: 1 addition & 1 deletion sendgrid-ruby.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

Gem::Specification.new do |spec|
spec.name = 'sendgrid-ruby'
spec.version = '3.0.1'
spec.version = '3.0.2'
spec.authors = ['Elmer Thomas', 'Robin Johnson', 'Eddie Zaneski']
spec.email = '[email protected]'
spec.summary = 'Official SendGrid Gem'
Expand Down

0 comments on commit 9397d95

Please sign in to comment.