puppet-modulebuilder 2.0.0 → 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/lib/puppet/modulebuilder/builder.rb +4 -0
- data/lib/puppet/modulebuilder/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: 8a8be33fb0c704acdd28d3a936eb3b2a78721a26a6fefffce05cac3c9540136a
|
4
|
+
data.tar.gz: a1ea352915a31386e6a3d3876585e2e4d9d03ce13f398e2c89b984b8ab177f01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c89a70803661ecd3ccf1615cb8a4b148e3da1938b2d75465a86e737d51587a7d957fe80bc473c9e4148d90dff789d2e96017db0e8723f2fdd9ea80ffb58fe539
|
7
|
+
data.tar.gz: 2e45d7231d102286592210c2cb5a81f5000dcbe5132b2860f11e65e5ca701b25ea21c5e7b86f0771921b5d0efa11f95c4b7c0b806b65f42b2759f533f14d81c1
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
|
6
6
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).
|
7
7
|
|
8
|
+
## [v2.0.2](https://github.com/puppetlabs/puppet-modulebuilder/tree/v2.0.2) - 2024-09-24
|
9
|
+
|
10
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-modulebuilder/compare/v2.0.1...v2.0.2)
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
|
14
|
+
- (bug) - Include missing function, facts.d and example dirs in module builds [#102](https://github.com/puppetlabs/puppet-modulebuilder/pull/102) ([jordanbreen28](https://github.com/jordanbreen28))
|
15
|
+
|
16
|
+
## [v2.0.1](https://github.com/puppetlabs/puppet-modulebuilder/tree/v2.0.1) - 2024-09-18
|
17
|
+
|
18
|
+
[Full Changelog](https://github.com/puppetlabs/puppet-modulebuilder/compare/v2.0.0...v2.0.1)
|
19
|
+
|
20
|
+
### Fixed
|
21
|
+
|
22
|
+
- (bug) - Add lib dir to built modules [#100](https://github.com/puppetlabs/puppet-modulebuilder/pull/100) ([jordanbreen28](https://github.com/jordanbreen28))
|
23
|
+
|
8
24
|
## [v2.0.0](https://github.com/puppetlabs/puppet-modulebuilder/tree/v2.0.0) - 2024-09-17
|
9
25
|
|
10
26
|
[Full Changelog](https://github.com/puppetlabs/puppet-modulebuilder/compare/v1.1.0...v2.0.0)
|
@@ -18,8 +18,12 @@ module Puppet::Modulebuilder
|
|
18
18
|
'!/bolt_plugin.json',
|
19
19
|
'!/data/**',
|
20
20
|
'!/docs/**',
|
21
|
+
'!/examples/**',
|
22
|
+
'!/facts.d/**',
|
21
23
|
'!/files/**',
|
24
|
+
'!/functions/**',
|
22
25
|
'!/hiera.yaml',
|
26
|
+
'!/lib/**',
|
23
27
|
'!/locales/**',
|
24
28
|
'!/manifests/**',
|
25
29
|
'!/metadata.json',
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: puppet-modulebuilder
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0.
|
4
|
+
version: 2.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sheena
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-09-
|
12
|
+
date: 2024-09-24 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: minitar
|