smtpapi 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c7168ccac448f1dfc93c0b0558365926c78d94d0daeade22b3e7458672e617b
4
- data.tar.gz: 3db08e161f40a05359985a417278e3f5ee1c5cc72e3000ad126e7210bbd9b2c4
3
+ metadata.gz: 9ffd2d43fd3ac65eaf3907885578d80fa88a7336cf32a1d4ae13d235be01a5b8
4
+ data.tar.gz: 077d3581f8534fecc641aabff3f03680422255e8dd89ed7e7e44040e905070c2
5
5
  SHA512:
6
- metadata.gz: 40ede31b57ed125271afe680498907f92a8945d9cd0611b36fcd902a6ce7c3ccb2fdbcd45bc0b4905c0b55c1496ab49161761d223655cd73d2a231e3eaa504c2
7
- data.tar.gz: 6e237f9b1387d51b5e2ef58e5f543f6f39197e6daf554d57749416c5f00286286a42912116a4094d8a415eee251ff5c6c5ce64fcb49c2da76fe4289871cf45c7
6
+ metadata.gz: ea6f7df2c4ea4082b6d3249413b404d2dc8a94582c5e7c6d0427f35f7117ddaa8027217670b7d196140cfe8ad905363f6a1986a946decebcd8fa67421039f349
7
+ data.tar.gz: b10e8d4b76194f0cc38ff91f70cc323984a7b1f196561817a3b5f50e4779d302d659766fca4a136864b84dfc9f8aa7bf9292608359e6a11390b43dae1a865677
@@ -1,18 +1,19 @@
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
  before_script:
9
- - bundle install
10
+ - bundle install
10
11
  script:
11
- - rubocop --fail-level=W
12
- - rake test
12
+ - rubocop --fail-level=W
13
+ - rake test
13
14
  matrix:
14
15
  allow_failures:
15
- - rvm: ruby-head
16
+ - rvm: ruby-head
16
17
  fast_finish: true
17
18
  deploy:
18
19
  provider: rubygems
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
3
3
 
4
4
  This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
+ [2020-03-04] Version 0.1.5
7
+ --------------------------
8
+ **Library - Chore**
9
+ - [PR #95](https://github.com/sendgrid/smtpapi-ruby/pull/95): add Ruby 2.7 to Travis. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
10
+
11
+
6
12
  [2020-02-19] Version 0.1.4
7
13
  --------------------------
8
14
  **Library - Chore**
data/README.md CHANGED
@@ -10,11 +10,8 @@
10
10
 
11
11
  **This ruby gem allows you to quickly and more easily generate SendGrid X-SMTPAPI headers.**
12
12
 
13
-
14
13
  # Announcements
15
14
 
16
- **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 :)
17
-
18
15
  All updates to this library is documented in our [CHANGELOG](https://github.com/sendgrid/smtpapi-ruby/blob/master/CHANGELOG.md).
19
16
 
20
17
  # Table of Contents
@@ -31,7 +28,7 @@ All updates to this library is documented in our [CHANGELOG](https://github.com/
31
28
 
32
29
  ## Prerequisites
33
30
 
34
- - Ruby version 2.2
31
+ - Ruby version >= 2.4
35
32
  - The SendGrid service, starting at the [free level](https://sendgrid.com/free?source=smtpapi-ruby)
36
33
 
37
34
  ## Install Package
@@ -2,5 +2,5 @@
2
2
  # SendGrid smtpapi
3
3
  #
4
4
  module Smtpapi
5
- VERSION = '0.1.4'.freeze
5
+ VERSION = '0.1.5'.freeze
6
6
  end
@@ -7,7 +7,7 @@ require './lib/smtpapi'
7
7
  #
8
8
  class SmtpapiTest < Test::Unit::TestCase
9
9
  def test_version
10
- assert_equal('0.1.4', Smtpapi::VERSION)
10
+ assert_equal('0.1.5', Smtpapi::VERSION)
11
11
  end
12
12
 
13
13
  def test_empty
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smtpapi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wataru Sato
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-02-19 00:00:00.000000000 Z
12
+ date: 2020-03-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake