sendgrid-ruby 6.1.0 → 6.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44488d0349e12b7aeb8b07c2709a410e698434bacd1669627f522d9c7bd9081d
4
- data.tar.gz: 59999af963c2deb8080b47109a1ba24506b8d3885a694016a4fefaff3155e661
3
+ metadata.gz: fe87e8277c732eabaeaf12b581ee8626676db1bed09c0ae46d9440f91e56c642
4
+ data.tar.gz: 4454acaf4554f092b0fa852a445ebc215c611c9e76bc95f2825eee3c1ec50b38
5
5
  SHA512:
6
- metadata.gz: b51378521916ec5fe7554229db5735b6aa698f874dd90a9b358dc42f416f31fe1546f999dcda1943bb6587719547c38b7c60d0df0c2cd888035504c36c1d0a3f
7
- data.tar.gz: 54ca0f2f2bea0153044fd9b3583aa6b61fa97414b880b84df951522b1bc57c1c491de8e8ce6580db0c3985b07499fda84757c7eeb24a40b9ed050f7b24e2e74b
6
+ metadata.gz: 327524a86ccbbf040455bb770d44538dce4cc57f3daf96eca8b126b052209a2acf20cd331f192c6fe5ed697d832cd2d68f9f2d2b8f8280a4f48d0de7bd6e5c6f
7
+ data.tar.gz: 29535a808d6cb61912ac27cc83ee5ecd488dbcbfca3410e23cd7d9ef2549803dcd4fc3741d77923d58b9c6ca72683df102d6e65ad0ee9744f8dc6152b5a11de9
@@ -1,23 +1,24 @@
1
1
  language: ruby
2
2
  rvm:
3
- - ruby-head
4
- - 2.6
5
- - 2.5
6
- - 2.4
7
- - jruby
3
+ - ruby-head
4
+ - 2.7
5
+ - 2.6
6
+ - 2.5
7
+ - 2.4
8
+ - jruby
8
9
  gemfile:
9
- - gemfiles/Sinatra_1.gemfile
10
- - gemfiles/Sinatra_2.gemfile
10
+ - gemfiles/Sinatra_1.gemfile
11
+ - gemfiles/Sinatra_2.gemfile
11
12
  before_script:
12
- - mkdir prism
13
- - mkdir prism/bin
14
- - export PATH=$PATH:$PWD/prism/bin/
15
- - "./test/prism.sh"
13
+ - mkdir prism
14
+ - mkdir prism/bin
15
+ - export PATH=$PATH:$PWD/prism/bin/
16
+ - "./test/prism.sh"
16
17
  install: make install
17
18
  script: make test
18
19
  matrix:
19
20
  allow_failures:
20
- - rvm: ruby-head
21
+ - rvm: ruby-head
21
22
  fast_finish: true
22
23
  deploy:
23
24
  provider: rubygems
@@ -1,6 +1,17 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ [2020-03-04] Version 6.1.1
5
+ --------------------------
6
+ **Library - Docs**
7
+ - [PR #375](https://github.com/sendgrid/sendgrid-ruby/pull/375): update bug template URL. Thanks to [@divyanshu-rawat](https://github.com/divyanshu-rawat)!
8
+ - [PR #385](https://github.com/sendgrid/sendgrid-ruby/pull/385): Remove announcements (the job posting is filled?). Thanks to [@deyton](https://github.com/deyton)!
9
+
10
+ **Library - Chore**
11
+ - [PR #409](https://github.com/sendgrid/sendgrid-ruby/pull/409): bump `bundler` version to 2.1.2. Thanks to [@chhhris](https://github.com/chhhris)!
12
+ - [PR #408](https://github.com/sendgrid/sendgrid-ruby/pull/408): add Ruby 2.7 to Travis. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
13
+
14
+
4
15
  [2020-02-19] Version 6.1.0
5
16
  --------------------------
6
17
  **Library - Feature**
@@ -47,7 +47,7 @@ Before you decide to create a new issue, please try the following:
47
47
 
48
48
  ### Please use our Bug Report Template
49
49
 
50
- In order to make the process easier, we've included a [sample bug report template](https://github.com/sendgrid/sendgrid-ruby/ISSUE_TEMPLATE.md) (borrowed from [Ghost](https://github.com/TryGhost/Ghost/)). The template uses [GitHub flavored markdown](https://help.github.com/articles/github-flavored-markdown/) for formatting.
50
+ In order to make the process easier, we've included a [sample bug report template](https://github.com/sendgrid/sendgrid-ruby/blob/master/ISSUE_TEMPLATE.md) (borrowed from [Ghost](https://github.com/TryGhost/Ghost/)). The template uses [GitHub flavored markdown](https://help.github.com/articles/github-flavored-markdown/) for formatting.
51
51
 
52
52
  <a name="improvements-to-the-codebase"></a>
53
53
  ## Improvements to the Codebase
data/Makefile CHANGED
@@ -1,7 +1,7 @@
1
1
  .PHONY: install test
2
2
 
3
3
  install:
4
- gem install bundler:1.14.6; bundle install
4
+ gem install bundler:2.1.2; bundle install
5
5
 
6
6
  test:
7
7
  bundle exec rake spec
data/README.md CHANGED
@@ -35,18 +35,12 @@ We appreciate your continued support, thank you!
35
35
  * [About](#about)
36
36
  * [License](#license)
37
37
 
38
- <a name="announcements"></a>
39
- # Announcements
40
-
41
- **NEW:** If you're a software engineer who is passionate about #DeveloperExperience and/or #OpenSource, [this is an incredible opportunity to join our #DX team](https://sendgrid.com/careers/role/1421152/?gh_jid=1421152) as a Developer Experience Engineer and work with [@thinkingserious](https://github.com/thinkingserious) and [@aroach](https://github.com/aroach)! Tell your friends :)
42
-
43
-
44
38
  <a name="installation"></a>
45
39
  # Installation
46
40
 
47
41
  ## Prerequisites
48
42
 
49
- - Ruby version >= 2.2 (except version [2.6.0](https://github.com/sendgrid/sendgrid-ruby/blob/master/TROUBLESHOOTING.md#ruby-versions))
43
+ - Ruby version >= 2.4 (except version [2.6.0](https://github.com/sendgrid/sendgrid-ruby/blob/master/TROUBLESHOOTING.md#ruby-versions))
50
44
  - The Twilio SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-ruby)
51
45
 
52
46
  ## Setup Environment Variables
@@ -1,3 +1,3 @@
1
1
  module SendGrid
2
- VERSION = '6.1.0'
2
+ VERSION = '6.1.1'
3
3
  end
@@ -58,7 +58,7 @@ class TestAPI < MiniTest::Test
58
58
  assert_equal(test_headers, sg.request_headers)
59
59
  assert_equal("v3", sg.version)
60
60
  assert_equal(subuser, sg.impersonate_subuser)
61
- assert_equal("6.1.0", SendGrid::VERSION)
61
+ assert_equal("6.1.1", SendGrid::VERSION)
62
62
  assert_instance_of(SendGrid::Client, sg.client)
63
63
  end
64
64
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sendgrid-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.0
4
+ version: 6.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elmer Thomas
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-02-20 00:00:00.000000000 Z
13
+ date: 2020-03-04 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ruby_http_client