Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit b36d3b7

Browse files
author
Sebastian Gumprich
committed
Merge pull request #7 from hardening-io/chris-rock/changelog
add changelog generator
2 parents d68494a + 8eeceea commit b36d3b7

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,15 @@
1+
# Change Log
12

3+
## [Unreleased](https://github.com/hardening-io/ansible-mysql-hardening/tree/HEAD)
4+
5+
**Merged pull requests:**
6+
7+
- fix mysql restart not happening because of missing os specific variable [\#5](https://github.com/hardening-io/ansible-mysql-hardening/pull/5) ([fheinle](https://github.com/fheinle))
8+
- Update kitchen-ansible, remove separate debian install [\#4](https://github.com/hardening-io/ansible-mysql-hardening/pull/4) ([rndmh3ro](https://github.com/rndmh3ro))
9+
- update common kitchen.yml platforms \(ansible\), kitchen\_debian.yml platforms \(ansible\) [\#3](https://github.com/hardening-io/ansible-mysql-hardening/pull/3) ([chris-rock](https://github.com/chris-rock))
10+
- Separate system-vars from editable vars. [\#2](https://github.com/hardening-io/ansible-mysql-hardening/pull/2) ([rndmh3ro](https://github.com/rndmh3ro))
11+
- Add documentation for testing, change value in vars [\#1](https://github.com/hardening-io/ansible-mysql-hardening/pull/1) ([rndmh3ro](https://github.com/rndmh3ro))
12+
13+
14+
15+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ end
2929
group :openstack do
3030
gem 'kitchen-openstack'
3131
end
32+
33+
group :tools do
34+
gem 'github_changelog_generator', '~> 1'
35+
end

Rakefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env rake
2+
# encoding: utf-8
3+
4+
# Automatically generate a changelog for this project. Only loaded if
5+
# the necessary gem is installed.
6+
begin
7+
require 'github_changelog_generator/task'
8+
GitHubChangelogGenerator::RakeTask.new :changelog
9+
rescue LoadError
10+
puts '>>>>> GitHub Changelog Generator not loaded, omitting tasks'
11+
end

0 commit comments

Comments
 (0)