voxpupuli-release 1.0.2 → 1.1.0
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/release.yml +3 -2
- data/CHANGELOG.md +14 -1
- data/lib/voxpupuli/release/rake_tasks.rb +5 -0
- data/lib/voxpupuli/release/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 714ec123f99d6a61fc542be6abe7ce5e2019307aa1d1e85d2271e0acb4111cc3
|
|
4
|
+
data.tar.gz: 634cf01bf767c7ab504eb7ca79e5d3bbd16f07f7a8a2fe5aa2b5c33867aba8b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1e5ab6c0c9dea59258eab404b77b332ebed796037b173772d00321acf6b57d4eeb349b51d11475d0241d96d1157e6c15cdb615820ab92008c952770f91aec543
|
|
7
|
+
data.tar.gz: 8e821809ab0bba7e4bbec5413e81c322a60207948f953a17efc2f63d0ad623584ef48a4a9a00daa962535bb6acaec183c159bf6211989c9e7ec8f1b20be76b52
|
data/CHANGELOG.md
CHANGED
|
@@ -2,16 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [v1.1.0](https://github.com/voxpupuli/voxpupuli-release-gem/tree/v1.1.0) (2021-10-15)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release-gem/compare/v1.0.2...v1.1.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add `github_release` alias for `travis_release` task [\#28](https://github.com/voxpupuli/voxpupuli-release-gem/pull/28) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
|
+
|
|
13
|
+
**Fixed bugs:**
|
|
14
|
+
|
|
15
|
+
- fix wrong syntax in GitHub actions [\#27](https://github.com/voxpupuli/voxpupuli-release-gem/pull/27) ([bastelfreak](https://github.com/bastelfreak))
|
|
16
|
+
|
|
5
17
|
## [v1.0.2](https://github.com/voxpupuli/voxpupuli-release-gem/tree/v1.0.2) (2021-07-30)
|
|
6
18
|
|
|
7
19
|
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release-gem/compare/v1.0.1...v1.0.2)
|
|
8
20
|
|
|
9
21
|
**Fixed bugs:**
|
|
10
22
|
|
|
11
|
-
- directly load
|
|
23
|
+
- directly load blacksmith rake tasks [\#25](https://github.com/voxpupuli/voxpupuli-release-gem/pull/25) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
24
|
|
|
13
25
|
**Merged pull requests:**
|
|
14
26
|
|
|
27
|
+
- Update release workflow + docs / Release 1.0.2 [\#26](https://github.com/voxpupuli/voxpupuli-release-gem/pull/26) ([bastelfreak](https://github.com/bastelfreak))
|
|
15
28
|
- Convert from Travis to Github Actions [\#24](https://github.com/voxpupuli/voxpupuli-release-gem/pull/24) ([ekohl](https://github.com/ekohl))
|
|
16
29
|
|
|
17
30
|
## [v1.0.1](https://github.com/voxpupuli/voxpupuli-release-gem/tree/v1.0.1) (2019-09-02)
|
|
@@ -33,6 +33,11 @@ task "travis_release" do
|
|
|
33
33
|
g.push!
|
|
34
34
|
end
|
|
35
35
|
|
|
36
|
+
desc 'Release via GitHub Actions (alias for travis_release)'
|
|
37
|
+
task :release do
|
|
38
|
+
Rake::Task['travis_release'].invoke
|
|
39
|
+
end
|
|
40
|
+
|
|
36
41
|
desc 'Check Changelog.'
|
|
37
42
|
task :check_changelog do
|
|
38
43
|
v = Blacksmith::Modulefile.new.version
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: voxpupuli-release
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|