Skip to content

Commit 7a17d41

Browse files
committed
Prep for release
1 parent 1c5c006 commit 7a17d41

File tree

6 files changed

+68
-27
lines changed

6 files changed

+68
-27
lines changed

.sync.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Gemfile:
3030
- gem: puppet-strings
3131

3232
Rakefile:
33+
changelog_version_tag_pattern: '%s'
3334
requires:
3435
- puppet-lint/tasks/puppet-lint
3536

CHANGELOG.md

Lines changed: 41 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,47 @@
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.3](https://github.com/puppetlabs/puppetlabs-sshkeys_core/tree/1.0.3) (2019-10-31)
6+
7+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-sshkeys_core/compare/1.0.2...1.0.3)
8+
9+
### Added
10+
11+
- \(MODULES-9578\) Create ssh\_authorized\_key in root path [\#20](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/20) ([GabrielNagy](https://github.com/GabrielNagy))
12+
13+
## [1.0.2](https://github.com/puppetlabs/puppetlabs-sshkeys_core/tree/1.0.2) (2019-01-11)
14+
15+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-sshkeys_core/compare/1.0.1...1.0.2)
16+
17+
### Added
18+
19+
- \(maint\) add LICENSE file [\#16](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/16) ([melissa](https://github.com/melissa))
20+
- \(L10n\) Update Japanese translations [\#13](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/13) ([melissa](https://github.com/melissa))
21+
22+
### Fixed
23+
24+
- ssh\_authorized\_key: Fix invalid 'options' error [\#10](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/10) ([natemccurdy](https://github.com/natemccurdy))
25+
26+
## [1.0.1](https://github.com/puppetlabs/puppetlabs-sshkeys_core/tree/1.0.1) (2018-08-17)
27+
28+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-sshkeys_core/compare/1.0.0...1.0.1)
629

7-
## [1.0.2] - 2019-01-11
830
### Added
9-
- Added LICENSE file
10-
- Added Japanese translations
11-
## Changed
12-
- Fixed invalid 'options' error
1331

14-
## [1.0.1] - 2018-08-17
32+
- \(PUP-9053\) Enable localization and bump puppet version to at least 6 [\#7](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/7) ([melissa](https://github.com/melissa))
33+
- \(maint\) Import missed User type integration test from puppet repo [\#6](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/6) ([jhelwig](https://github.com/jhelwig))
34+
- \(maint\) Import the User type unit tests specific to ssh\_authorized\_keys [\#5](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/5) ([jhelwig](https://github.com/jhelwig))
35+
- Install module on all hosts, not just those with default role [\#4](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/4) ([joshcooper](https://github.com/joshcooper))
36+
37+
## [1.0.0](https://github.com/puppetlabs/puppetlabs-sshkeys_core/tree/1.0.0) (2018-07-17)
38+
39+
[Full Changelog](https://github.com/puppetlabs/puppetlabs-sshkeys_core/compare/d1719de1d77b9c139b1b5f5832330807c0fe11fe...1.0.0)
40+
1541
### Added
16-
- (PUP-9053) Enable localization
17-
- (maint) Import missed User type integration test from puppet repo
18-
- (maint) Import the User type unit tests specific to ssh_authorized_keys
19-
### Changed
20-
- (PUP-9052) Bump puppet req to at least puppet 6
21-
- Install module on all hosts, not just those with default role
22-
23-
## [1.0.0] - 2018-07-17
24-
### Summary
25-
This is the initial release of the extracted sshkeys module.
26-
27-
[1.0.2]: https://github.com/puppetlabs/puppetlabs-sshkeys_core/compare/1.0.1...1.0.2
28-
[1.0.1]: https://github.com/puppetlabs/puppetlabs-sshkeys_core/compare/1.0.0...1.0.1
29-
[1.0.0]: https://github.com/puppetlabs/puppetlabs-sshkeys_core/releases/tag/1.0.0
42+
43+
- Initial release of the extracted sshkeys module [\#1](https://github.com/puppetlabs/puppetlabs-sshkeys_core/pull/1) ([jhelwig](https://github.com/jhelwig))
44+
45+
46+
47+
\* *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
@@ -33,7 +33,7 @@ end
3333

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

data/common.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
---

hiera.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
version: 5
3+
4+
defaults: # Used for any hierarchy level that omits these keys.
5+
datadir: data # This path is relative to hiera.yaml's directory.
6+
data_hash: yaml_data # Use the built-in YAML backend.
7+
8+
hierarchy:
9+
- name: "osfamily/major release"
10+
paths:
11+
- "os/%{facts.os.family}/%{facts.os.release.major}.yaml"
12+
# Used for Solaris
13+
- "os/%{facts.os.family}/%{facts.kernelrelease}.yaml"
14+
# Used to distinguish between Debian and Ubuntu
15+
- "os/%{facts.os.name}/%{facts.os.release.major}.yaml"
16+
- name: "osfamily"
17+
paths:
18+
- "os/%{facts.os.family}.yaml"
19+
- "os/%{facts.os.name}.yaml"
20+
- name: 'common'
21+
path: 'common.yaml'

metadata.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-sshkeys_core",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"author": "puppetlabs",
55
"summary": "Manage SSH authorized keys, and known hosts.",
66
"license": "Apache-2.0",
@@ -87,6 +87,6 @@
8787
}
8888
],
8989
"pdk-version": "1.14.0",
90-
"template-url": "https://github.com/puppetlabs/pdk-templates.git#master",
91-
"template-ref": "heads/master-0-g6b5ed92"
90+
"template-url": "https://github.com/puppetlabs/pdk-templates#1.14.0",
91+
"template-ref": "1.14.0-0-g1bf3a4e"
9292
}

0 commit comments

Comments
 (0)