From dd23dccbcdcc51a4f0214e2d47e4ffabf28622ed Mon Sep 17 00:00:00 2001 From: Elmer Thomas Date: Wed, 15 Jun 2016 09:57:33 -0700 Subject: [PATCH] Version Bump v2.0.1: Add mail/send helper to the , updated http client dependency --- CHANGELOG.md | 4 ++++ sendgrid-ruby.gemspec | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10a162ec..421e5ff5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. +## [2.0.1] - 2016-06-15 ## +### Added +- Add mail/send helper to the $LOAD_PATH, updated http client dependency + ## [2.0.0] - 2016-06-13 ## ### Added - Breaking change to support the v3 Web API diff --git a/sendgrid-ruby.gemspec b/sendgrid-ruby.gemspec index 4e24c48c..d5a5c4ad 100644 --- a/sendgrid-ruby.gemspec +++ b/sendgrid-ruby.gemspec @@ -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.0' + spec.version = '3.0.1' spec.authors = ['Elmer Thomas', 'Robin Johnson', 'Eddie Zaneski'] spec.email = 'dx@sendgrid.com' spec.summary = 'Official SendGrid Gem' @@ -15,8 +15,8 @@ Gem::Specification.new do |spec| spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) } spec.test_files = spec.files.grep(/^(test|spec|features)/) - spec.require_paths = ['lib'] + spec.require_paths = ['lib', 'lib/helpers/mail'] - spec.add_dependency 'ruby_http_client', '~> 2.1.1' + spec.add_dependency 'ruby_http_client', '~> 2.1.2' spec.add_development_dependency 'rake', '~> 0' end