Merge pull request #3 from voxpupuli/update-changelog

preparing 1.0.0 release
This commit is contained in:
Bram Vogelaar 2021-01-17 11:41:17 +01:00 committed by GitHub
commit a9b8cc64a7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 26 additions and 4 deletions

18
CHANGELOG.md Normal file
View file

@ -0,0 +1,18 @@
# Changelog
All notable changes to this project will be documented in this file.
Each new release typically also includes the latest modulesync defaults.
These should not affect the functionality of the module.
## [v1.0.0](https://github.com/voxpupuli/puppet-hashi_stack/tree/v1.0.0) (2021-01-16)
[Full Changelog](https://github.com/voxpupuli/puppet-hashi_stack/compare/d9ceffd75b1f222e1145d58cceaf3a9bcb41b360...v1.0.0)
**Merged pull requests:**
- moving parameters into appropriate place, adding meaning unit test, f… [\#2](https://github.com/voxpupuli/puppet-hashi_stack/pull/2) ([attachmentgenie](https://github.com/attachmentgenie))
- modulesync 4.0.0-10-g1c946c3 [\#1](https://github.com/voxpupuli/puppet-hashi_stack/pull/1) ([attachmentgenie](https://github.com/attachmentgenie))
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

View file

@ -16,16 +16,20 @@ This class installs the hashicorp repository
#### Examples #### Examples
##### ##### Inclusion using defaults
```puppet ```puppet
include hashi_stack::repo include hashi_stack::repo
``` ```
##### ##### Include repo and install packer as package
```puppet ```puppet
class { 'hashi_stack::repo': } -> package { 'packer': ensure => installed } include hashi_stack::repo
package { 'packer':
ensure => installed,
require => Class['Hashi_stack::Repo'],
}
``` ```
#### Parameters #### Parameters

View file

@ -1,6 +1,6 @@
{ {
"name": "puppet-hashi_stack", "name": "puppet-hashi_stack",
"version": "1.0.0-rc0", "version": "1.0.0",
"author": "Vox Pupuli", "author": "Vox Pupuli",
"summary": "This module contains shared code for various HashiCorp modules", "summary": "This module contains shared code for various HashiCorp modules",
"license": "AGPL-3.0", "license": "AGPL-3.0",