smtpapi 0.1.11 → 0.1.12

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: d65340477a6b441a06848a2fdf69b4b7f7eeb7c639ed4aeb0ccb0a2d10f9095d
4
- data.tar.gz: 4d04c43f80dba6ecaeefa90229fc8aa3a00523264bcf89f2411afc9784ab7a6c
3
+ metadata.gz: 94a824b0fea75a25817378e12023d69dc212c51ba6deeaf469c51098f6258d70
4
+ data.tar.gz: 7c0dd348854000f93b51e7a259a63b559cef3d253e2fbcdfdeb04e838af26f9a
5
5
  SHA512:
6
- metadata.gz: 3cd0fa7a7dc1eede99eaf29f9f18e81e71948f2d28f1743c88aa89d48a8539a72cd8be166db335b443ea1319b889a2046699091e62d616a79cced382c535580c
7
- data.tar.gz: f70d130dbc5a13580a343b10454844c8529e93d332994e2bedf14e56de7ce5a0b74ba2d915c221167d6dd290e4f7f4d51821ff5479ba2ed695fcc9e6813054cf
6
+ metadata.gz: af1d33f1d27b0e043a82347cc8af9f388cee9bab56106094f8740bd4566727681e95138491d547fea4b0b9e3d90ba368698169dc610d4c31132e65ca0e34767c
7
+ data.tar.gz: 911c5ef7f93cb6c5d29a88198dc358f56f84fce1683829cca61acc6a398013b26e065aca635dfebe8e376bb781fc13ede2f02735cb07a50cfc648dd2fdaac8fc
@@ -80,6 +80,11 @@ jobs:
80
80
  gem build *.gemspec
81
81
  gem push *.gem
82
82
 
83
+ - name: Submit metric to Datadog
84
+ uses: sendgrid/dx-automator/actions/datadog-release-metric@main
85
+ env:
86
+ DD_API_KEY: ${{ secrets.DATADOG_API_KEY }}
87
+
83
88
  notify-on-failure:
84
89
  name: Slack notify on failure
85
90
  if: failure() && github.event_name != 'pull_request' && (github.ref == 'refs/heads/main' || github.ref_type == 'tag')
data/CHANGELOG.md CHANGED
@@ -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
+ [2022-03-09] Version 0.1.12
7
+ ---------------------------
8
+ **Library - Chore**
9
+ - [PR #102](https://github.com/sendgrid/smtpapi-ruby/pull/102): push Datadog Release Metric upon deploy success. Thanks to [@eshanholtz](https://github.com/eshanholtz)!
10
+
11
+
6
12
  [2022-02-09] Version 0.1.11
7
13
  ---------------------------
8
14
  **Library - Chore**
@@ -2,5 +2,5 @@
2
2
  # SendGrid smtpapi
3
3
  #
4
4
  module Smtpapi
5
- VERSION = '0.1.11'.freeze
5
+ VERSION = '0.1.12'.freeze
6
6
  end
data/test/test.rb CHANGED
@@ -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.11', Smtpapi::VERSION)
10
+ assert_equal('0.1.12', 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.11
4
+ version: 0.1.12
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: 2022-02-09 00:00:00.000000000 Z
12
+ date: 2022-03-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rake
@@ -109,7 +109,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  - !ruby/object:Gem::Version
110
110
  version: '0'
111
111
  requirements: []
112
- rubygems_version: 3.3.3
112
+ rubygems_version: 3.3.7
113
113
  signing_key:
114
114
  specification_version: 4
115
115
  summary: Smtpapi library for SendGrid.