voxpupuli-release 1.2.1 → 1.3.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/CHANGELOG.md +9 -0
- data/lib/voxpupuli/release/rake_tasks.rb +4 -1
- data/lib/voxpupuli/release/version.rb +1 -1
- data/voxpupuli-release.gemspec +1 -0
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 606f972169119f56967f77a587da869e0ce334f7c2a965641d0e5bdabcd18955
|
|
4
|
+
data.tar.gz: ce8bf749396849ba1716025a052c28c2b8aeb5798b7b97b10efac0772dc537df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 19bf5446634ce655c31632e5b0e24b0b70256cf90d9f980a150a8ec78f3d8bf1f8e02797b704c76305ed3aca7477805286f9bd28718697becb25e759eaa26001
|
|
7
|
+
data.tar.gz: 9fd53026ed507a108ce7d1104eb908183c2403f104852af989c388f50d59cdb28422c698fba879788fd158a5e453fa57caa0b5215abd9e3290807b5760baf928
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [v1.3.0](https://github.com/voxpupuli/voxpupuli-release/tree/v1.3.0) (2021-12-08)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.2.1...v1.3.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Allow no 'v' in release version [\#41](https://github.com/voxpupuli/voxpupuli-release/pull/41) ([smortex](https://github.com/smortex))
|
|
12
|
+
- Validate REFERENCE.md if it exists [\#39](https://github.com/voxpupuli/voxpupuli-release/pull/39) ([bastelfreak](https://github.com/bastelfreak))
|
|
13
|
+
|
|
5
14
|
## [v1.2.1](https://github.com/voxpupuli/voxpupuli-release/tree/v1.2.1) (2021-10-29)
|
|
6
15
|
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/voxpupuli-release/compare/v1.2.0...v1.2.1)
|
|
@@ -14,6 +14,8 @@ task :release do
|
|
|
14
14
|
raise "Refusing to release an RC or build-release (#{v}).\n" +
|
|
15
15
|
"Please set a semver *release* version." unless v =~ /^\d+\.\d+.\d+$/
|
|
16
16
|
|
|
17
|
+
# validate that the REFERENCE.md is up2date, if it exists
|
|
18
|
+
Rake::Task['strings:validate:reference'].invoke if File.exist?('REFERENCE.md')
|
|
17
19
|
Rake::Task[:check_changelog].invoke
|
|
18
20
|
# do a "manual" module:release (clean, tag, bump, commit, push tags)
|
|
19
21
|
Rake::Task["module:clean"].invoke
|
|
@@ -45,7 +47,8 @@ task :check_changelog do
|
|
|
45
47
|
#
|
|
46
48
|
# ## 2016-11-20 Release 4.0.2
|
|
47
49
|
# ## [v4.0.3-rc0](https://github.com/voxpupuli/puppet-r10k/tree/v4.0.3-rc0) (2016-12-13)
|
|
48
|
-
|
|
50
|
+
# ## [2.1.0](https://github.com/opus-codium/puppet-odoo/tree/2.1.0) (2021-12-02)
|
|
51
|
+
if File.readlines('CHANGELOG.md').grep( /^(#.+[Rr]eleas.+#{Regexp.escape(v)}|## \[v?#{Regexp.escape(v)}\])/ ).empty?
|
|
49
52
|
fail "Unable to find a CHANGELOG.md entry for the #{v} release."
|
|
50
53
|
end
|
|
51
54
|
end
|
data/voxpupuli-release.gemspec
CHANGED
|
@@ -19,4 +19,5 @@ Gem::Specification.new do |s|
|
|
|
19
19
|
# Runtime dependencies, but also probably dependencies of requiring projects
|
|
20
20
|
s.add_runtime_dependency 'rake'
|
|
21
21
|
s.add_runtime_dependency 'puppet-blacksmith', '>= 4.0.0'
|
|
22
|
+
s.add_runtime_dependency 'puppet-strings', '>= 2.9.0'
|
|
22
23
|
end
|
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.
|
|
4
|
+
version: 1.3.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-12-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -38,6 +38,20 @@ dependencies:
|
|
|
38
38
|
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
40
|
version: 4.0.0
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: puppet-strings
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: 2.9.0
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: 2.9.0
|
|
41
55
|
description: Helpers for deploying Vox Pupuli modules
|
|
42
56
|
email:
|
|
43
57
|
- voxpupuli@groups.io
|
|
@@ -78,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
78
92
|
- !ruby/object:Gem::Version
|
|
79
93
|
version: '0'
|
|
80
94
|
requirements: []
|
|
81
|
-
rubygems_version: 3.2.
|
|
95
|
+
rubygems_version: 3.2.32
|
|
82
96
|
signing_key:
|
|
83
97
|
specification_version: 4
|
|
84
98
|
summary: Helpers for deploying Vox Pupuli modules
|