datadog_backup 1.0.1.alpha.1 → 1.0.1

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: 24038b9209cab6ebe03f9f7f4d90aa102824a415fb80bc043c7e04694b0ea52c
4
- data.tar.gz: 4372fa6964f6d08285b16d38ba5d934c37d12ac7cb7328af22f56b1ade996f7b
3
+ metadata.gz: f3cfc8d87b55c143eff0c970d9ad7d4ab4c916111cff42fbdc339620366b9b64
4
+ data.tar.gz: c1ab72f19f5bd95aca08a1a44d308b28438c5c707277e9c697e57983cc86bb9c
5
5
  SHA512:
6
- metadata.gz: 92f24e24cb04743e02b65a12cd1a500b2398ed5323cb482ce0a32538513100a7d451a23d71979c7fda14c4ef7b8f1466290fc571a416e9dec4b5f1847c09d015
7
- data.tar.gz: 1c84a2c4390e66ba48ff593638fffcaba9a94442c7a1775ec073380b30160ab5304eb4ad58d5265f1d3983abc331732849a64df28f271d509a3a347c99f9b652
6
+ metadata.gz: fcaae69f83cbf0ace4fb3844aa748520133534fba9a129741bb765f6460dab9cd58c866d19d38c1fe1fe1fa028222020b9058a5cc64d9d931d37feb02ce7f885
7
+ data.tar.gz: 800df89dbdd4e4b9ad526d9bdeb60bcb08689b7f247b83784735085b0f8036a20fc3a3479b023918b80343ea94cedc6b8af7432e86f5c15f0ccb3680f8e51a9f
@@ -9,12 +9,11 @@ updates:
9
9
  directory: "/" # Location of package manifests
10
10
  schedule:
11
11
  interval: "daily"
12
- commit_message:
13
- prefix: "deps"
14
- prefix_development: "chore"
15
- include_scope: true
12
+ commit-message:
13
+ prefix: "fix"
14
+ prefix-development: "chore"
15
+ include: "scope"
16
16
  - package-ecosystem: "github-actions"
17
17
  directory: "/" # Location of package manifests
18
18
  schedule:
19
19
  interval: "daily"
20
-
@@ -8,30 +8,35 @@ on:
8
8
  jobs:
9
9
  rspec:
10
10
  runs-on: ubuntu-latest
11
+
11
12
  steps:
12
13
  - uses: actions/checkout@v2
13
14
  - name: Set up Ruby 2.7.2
14
- uses: ruby/setup-ruby@v1
15
+ uses: actions/setup-ruby@v1.1.3
15
16
  with:
16
- ruby-version: 2.7
17
- bundler-cache: true
17
+ ruby-version: 2.7.2
18
18
  - name: Test with Rspec
19
19
  run: |
20
+ gem install --no-document bundler
21
+ bundle install --jobs 4 --retry 3
20
22
  bundle exec rspec --format documentation
21
23
  release:
22
24
  if: github.event_name == 'push'
23
25
  needs: rspec
24
26
  runs-on: ubuntu-latest
25
- env:
26
- BUNDLE_WITHOUT: "development:test"
27
- BUNDLE_DEPLOYMENT: "true"
27
+
28
28
  steps:
29
29
  - uses: actions/checkout@v2
30
30
  - name: Set up Ruby 2.7.2
31
- uses: ruby/setup-ruby@v1
31
+ uses: actions/setup-ruby@v1.1.3
32
32
  with:
33
- ruby-version: 2.7
34
- bundler-cache: true
33
+ ruby-version: 2.7.2
34
+ - name: Build with bundler
35
+ run: |
36
+ gem install --no-document bundler
37
+ bundle config set deployment 'true'
38
+ bundle config set without 'development test'
39
+ bundle install --jobs 4 --retry 3
35
40
  - name: Zip
36
41
  run : |
37
42
  zip -r datadog_backup.zip ./*
data/CHANGELOG.md CHANGED
@@ -1,4 +1,9 @@
1
- ## [1.0.1-alpha.1](https://github.com/scribd/datadog_backup/compare/v1.0.0...v1.0.1-alpha.1) (2021-03-10)
1
+ ## [1.0.1](https://github.com/scribd/datadog_backup/compare/v1.0.0...v1.0.1) (2021-03-26)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * dependabot syntax for github ([4214001](https://github.com/scribd/datadog_backup/commit/42140015976ec2d0f4d2fce6e4c3214bb590c967))
2
7
 
3
8
  # [1.0.0](https://github.com/scribd/datadog_backup/compare/v0.11.0...v1.0.0) (2021-03-02)
4
9
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module DatadogBackup
4
- VERSION = '1.0.1.alpha.1'
4
+ VERSION = '1.0.1'
5
5
  end
data/release.config.js CHANGED
@@ -1,13 +1,6 @@
1
1
  module.exports = {
2
2
  "plugins": [
3
- [
4
- "@semantic-release/commit-analyzer",
5
- {
6
- "releaseRules": [
7
- {"type": "deps", "release": "patch"}
8
- ]
9
- }
10
- ],
3
+ "@semantic-release/commit-analyzer",
11
4
  "@semantic-release/release-notes-generator",
12
5
  [
13
6
  "@semantic-release/changelog",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: datadog_backup
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1.alpha.1
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kamran Farhadi
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2021-03-10 00:00:00.000000000 Z
12
+ date: 2021-03-26 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: amazing_print
@@ -184,9 +184,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
184
184
  version: '0'
185
185
  required_rubygems_version: !ruby/object:Gem::Requirement
186
186
  requirements:
187
- - - ">"
187
+ - - ">="
188
188
  - !ruby/object:Gem::Version
189
- version: 1.3.1
189
+ version: '0'
190
190
  requirements: []
191
191
  rubygems_version: 3.1.4
192
192
  signing_key: