capistrano-twingly 4.0.3 → 4.0.4
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 +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/CHANGELOG.md +13 -0
- data/README.md +2 -2
- data/capistrano-twingly.gemspec +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 73f8f583d6a2f3186696bf34770d1e625320200e2d214dbf60ab0e9d4e25808a
|
|
4
|
+
data.tar.gz: a7a9ca0a5d69e5820e5c2f5cbe19f62711261c4276ab270d34d3114b32c43061
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4f6236ebfe68552a06884bb41637521810e72ff02a9fb2fbc41b6bd4cfdfd3ee4ca9df920434728fdb3866f735419272121f3e102e49fed307d5c45f618feca
|
|
7
|
+
data.tar.gz: 96f1ed608d1a6ff88b6f1c2aa617da057412f8e7125cb2a4b75a7218f3c51608f0343544b36da2bcce3b92d910d8f05d90faef2ef6d33c09dc0452c24f947c95
|
data/.github/workflows/ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v4.0.3](https://github.com/twingly/capistrano-twingly/tree/v4.0.3) (2021-01-14)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/twingly/capistrano-twingly/compare/v4.0.2...v4.0.3)
|
|
6
|
+
|
|
7
|
+
**Implemented enhancements:**
|
|
8
|
+
|
|
9
|
+
- Deprecation warnings from capistrano-bundler [\#61](https://github.com/twingly/capistrano-twingly/issues/61)
|
|
10
|
+
|
|
11
|
+
**Merged pull requests:**
|
|
12
|
+
|
|
13
|
+
- Explicitly use the git plugin [\#60](https://github.com/twingly/capistrano-twingly/pull/60) ([walro](https://github.com/walro))
|
|
14
|
+
- Trigger CI on pull-request events [\#59](https://github.com/twingly/capistrano-twingly/pull/59) ([walro](https://github.com/walro))
|
|
15
|
+
|
|
3
16
|
## [v4.0.2](https://github.com/twingly/capistrano-twingly/tree/v4.0.2) (2020-11-24)
|
|
4
17
|
|
|
5
18
|
[Full Changelog](https://github.com/twingly/capistrano-twingly/compare/v4.0.1...v4.0.2)
|
data/README.md
CHANGED
|
@@ -131,9 +131,9 @@ end
|
|
|
131
131
|
|
|
132
132
|
bundle exec rake release
|
|
133
133
|
|
|
134
|
-
* Update the changelog with [GitHub Changelog Generator](https://github.com/
|
|
134
|
+
* Update the changelog with [GitHub Changelog Generator](https://github.com/github-changelog-generator/github-changelog-generator) (`gem install github_changelog_generator` if you don't have it, set `CHANGELOG_GITHUB_TOKEN` to a personal access token to avoid rate limiting by GitHub). This command will update `CHANGELOG.md`. You need to commit and push manually.
|
|
135
135
|
|
|
136
|
-
github_changelog_generator
|
|
136
|
+
github_changelog_generator -u twingly -p capistrano-twingly
|
|
137
137
|
|
|
138
138
|
## Note about `CHANGELOG.md`
|
|
139
139
|
|
data/capistrano-twingly.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "capistrano-twingly"
|
|
7
|
-
spec.version = '4.0.
|
|
7
|
+
spec.version = '4.0.4'
|
|
8
8
|
spec.authors = ["Twingly AB"]
|
|
9
9
|
spec.email = ["support@twingly.com"]
|
|
10
10
|
spec.summary = %q{Capistrano 3 tasks used for Twingly's Ruby deployment}
|
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_dependency "capistrano-bundler", "~> 2.0"
|
|
22
22
|
spec.add_dependency "capistrano-chruby", "0.1.2"
|
|
23
23
|
spec.add_dependency "foreman", "~> 0.82"
|
|
24
|
-
spec.add_dependency "net-ssh", "~>
|
|
24
|
+
spec.add_dependency "net-ssh", "~> 7.0"
|
|
25
25
|
spec.add_dependency "ed25519", ">= 1.2", "< 1.3"
|
|
26
26
|
spec.add_dependency "bcrypt_pbkdf", ">= 1.0", "< 2.0"
|
|
27
27
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: capistrano-twingly
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Twingly AB
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-06-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: capistrano
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - "~>"
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '
|
|
75
|
+
version: '7.0'
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - "~>"
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '
|
|
82
|
+
version: '7.0'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: ed25519
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
195
195
|
- !ruby/object:Gem::Version
|
|
196
196
|
version: '0'
|
|
197
197
|
requirements: []
|
|
198
|
-
rubygems_version: 3.
|
|
198
|
+
rubygems_version: 3.3.7
|
|
199
199
|
signing_key:
|
|
200
200
|
specification_version: 4
|
|
201
201
|
summary: Capistrano 3 tasks used for Twingly's Ruby deployment
|