smtpapi 0.1.11 → 0.1.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/test-and-deploy.yml +5 -0
- data/CHANGELOG.md +6 -0
- data/lib/smtpapi/version.rb +1 -1
- data/test/test.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94a824b0fea75a25817378e12023d69dc212c51ba6deeaf469c51098f6258d70
|
4
|
+
data.tar.gz: 7c0dd348854000f93b51e7a259a63b559cef3d253e2fbcdfdeb04e838af26f9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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**
|
data/lib/smtpapi/version.rb
CHANGED
data/test/test.rb
CHANGED
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
|
+
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-
|
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.
|
112
|
+
rubygems_version: 3.3.7
|
113
113
|
signing_key:
|
114
114
|
specification_version: 4
|
115
115
|
summary: Smtpapi library for SendGrid.
|