Skip to content

Commit 5e1d31e

Browse files
committed
Prep for release
1 parent a75e83a commit 5e1d31e

File tree

4 files changed

+46
-24
lines changed

4 files changed

+46
-24
lines changed

.sync.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,6 @@ appveyor.yml:
5656
remove_includes:
5757
- env: PUPPET_GEM_VERSION="~> 4.0" CHECK=parallel_spec
5858
rvm: 2.1.9
59+
60+
Rakefile:
61+
changelog_version_tag_pattern: '%s'

CHANGELOG.md

Lines changed: 41 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,50 @@
1-
# Changelog
1+
# Change log
22

3-
All notable changes to this project will be documented in this file.
3+
All notable changes to this project will be documented in this file. 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).
44

5-
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).
5+
## [1.0.4](https://github.com/puppetlabs/puppetlabs-mount_core/tree/1.0.4) (2019-10-31)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_core/compare/1.0.3...1.0.4)
68

7-
## [1.0.3] - 2019-01-17
89
### Added
9-
- (PUP-9307) Allow for trailing slashes in mount resource title
10-
### Changed
11-
- (maint) Update PDK to 1.8.0
12-
Localization improvements and updated translations
13-
Added LICENSE file
1410

15-
## [1.0.2] - 2018-08-20
11+
- pdksync - \(maint\) Update module using PDK 1.14.0 [\#20](https://github.com/puppetlabs/puppetlabs-mount_core/pull/20) ([mihaibuzgau](https://github.com/mihaibuzgau))
12+
- \(MODULES-8304\) Allow whitespace in mountpoints on Linux [\#19](https://github.com/puppetlabs/puppetlabs-mount_core/pull/19) ([GabrielNagy](https://github.com/GabrielNagy))
13+
14+
### Fixed
15+
16+
- \(maint\) Fix broken contributing URL [\#18](https://github.com/puppetlabs/puppetlabs-mount_core/pull/18) ([GabrielNagy](https://github.com/GabrielNagy))
17+
18+
## [1.0.3](https://github.com/puppetlabs/puppetlabs-mount_core/tree/1.0.3) (2019-01-18)
19+
20+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_core/compare/1.0.2...1.0.3)
21+
1622
### Added
17-
- (PUP-9053) Enable localization
18-
### Changed
19-
- (PUP-9052) Bump puppet req to at least puppet 6
2023

21-
## [1.0.1] - 2018-07-26
22-
### Summary
23-
Use require_relative to load provider helper code.
24+
- aph/pup-9307-mount-trailing-slashes [\#13](https://github.com/puppetlabs/puppetlabs-mount_core/pull/13) ([m0dular](https://github.com/m0dular))
25+
- \(maint\) update PDK to 1.8.0; update all templates [\#12](https://github.com/puppetlabs/puppetlabs-mount_core/pull/12) ([melissa](https://github.com/melissa))
26+
- \(L10n\) Updating translations for readmes/README\_ja\_JP.md [\#10](https://github.com/puppetlabs/puppetlabs-mount_core/pull/10) ([ehom](https://github.com/ehom))
27+
28+
## [1.0.2](https://github.com/puppetlabs/puppetlabs-mount_core/tree/1.0.2) (2018-08-20)
29+
30+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_core/compare/1.0.1...1.0.2)
31+
32+
## [1.0.1](https://github.com/puppetlabs/puppetlabs-mount_core/tree/1.0.1) (2018-07-26)
33+
34+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_core/compare/1.0.0...1.0.1)
35+
36+
### Added
37+
38+
- Use relative\_require to load helper code [\#3](https://github.com/puppetlabs/puppetlabs-mount_core/pull/3) ([joshcooper](https://github.com/joshcooper))
39+
40+
## [1.0.0](https://github.com/puppetlabs/puppetlabs-mount_core/tree/1.0.0) (2018-07-18)
41+
42+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-mount_core/compare/bb9ea3bf32a116c95339a1e399eda22d76554f30...1.0.0)
43+
44+
### Added
45+
46+
- Initial mount module extraction [\#1](https://github.com/puppetlabs/puppetlabs-mount_core/pull/1) ([joshcooper](https://github.com/joshcooper))
47+
2448

25-
## [1.0.0] - 2018-07-18
26-
### Summary
27-
This is the initial release of the extracted mount module.
2849

29-
[1.0.2]: https://github.com/puppetlabs/puppetlabs-mount_core/compare/1.0.1...1.0.2
30-
[1.0.1]: https://github.com/puppetlabs/puppetlabs-mount_core/compare/1.0.0...1.0.1
31-
[1.0.0]: https://github.com/puppetlabs/puppetlabs-mount_core/releases/tag/1.0.0
50+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ end
3232

3333
def changelog_future_release
3434
return unless Rake.application.top_level_tasks.include? "changelog"
35-
returnVal = "v%s" % JSON.load(File.read('metadata.json'))['version']
35+
returnVal = "%s" % JSON.load(File.read('metadata.json'))['version']
3636
raise "unable to find the future_release (version) in metadata.json" if returnVal.nil?
3737
puts "GitHubChangelogGenerator future_release:#{returnVal}"
3838
returnVal

metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-mount_core",
3-
"version": "1.0.3",
3+
"version": "1.0.4",
44
"author": "puppetlabs",
55
"summary": "Manages mounted filesystems and mount tables.",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)