-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
07054f4
commit 6377405
Showing
5 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
since-tag=v1.0.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<markus.frosch@icinga.com> <markus.frosch@netways.de> | ||
<markus.frosch@icinga.com> <markus@lazyfrosch.de> | ||
<michael.friedrich@icinga.com> <michael.friedrich@netways.de> | ||
<eric.lippmann@icinga.com> <eric.lippmann@netways.de> | ||
<johannes.meyer@icinga.com> <johannes.meyer@netways.de> | ||
<thomas.gelf@icinga.com> <thomas@gelf.net> | ||
<marius.hein@icinga.com> <marius.hein@netways.de> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Eric Lippmann <eric.lippmann@icinga.com> | ||
Johannes Meyer <johannes.meyer@icinga.com> | ||
Lee Clemens <java@leeclemens.net> | ||
Marius Hein <marius.hein@icinga.com> | ||
Markus Frosch <markus.frosch@icinga.com> | ||
Matthew Thode <mthode@mthode.org> | ||
Michael Friedrich <michael.friedrich@icinga.com> | ||
Mirko Nardin <mirko.nardin@gmx.net> | ||
Thomas Gelf <thomas.gelf@icinga.com> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Change Log | ||
|
||
## [v1.1.0](https://github.com/Icinga/icingaweb2-module-pnp/tree/v1.1.0) (2017-08-15) | ||
[Full Changelog](https://github.com/Icinga/icingaweb2-module-pnp/compare/v1.0.0...v1.1.0) | ||
|
||
**Implemented enhancements:** | ||
|
||
- \[dev.icinga.com \#9894\] missing "close-Button" in pnp4nagios Module \(Icinga Web 2 Frame\) [\#14](https://github.com/Icinga/icingaweb2-module-pnp/issues/14) | ||
- \[dev.icinga.com \#9797\] Close button to PNP iframe [\#12](https://github.com/Icinga/icingaweb2-module-pnp/issues/12) | ||
- Improve UI and user interaction [\#28](https://github.com/Icinga/icingaweb2-module-pnp/pull/28) ([lazyfrosch](https://github.com/lazyfrosch)) | ||
|
||
|
||
|
||
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# Release Workflow | ||
|
||
Specify the release version. | ||
|
||
``` | ||
VERSION=1.1.0 | ||
``` | ||
|
||
## Issues | ||
|
||
Check issues at https://github.com/Icinga/icingaweb2-module-pnp | ||
|
||
## Authors | ||
|
||
Update the [.mailmap](.mailmap) and [AUTHORS](AUTHORS) files: | ||
|
||
``` | ||
git checkout master | ||
git log --use-mailmap | grep ^Author: | cut -f2- -d' ' | sort | uniq > AUTHORS | ||
``` | ||
|
||
## Changelog | ||
|
||
Update the [CHANGELOG.md](CHANGELOG.md) file. | ||
|
||
Uses [github_changelog_generator](https://github.com/skywinder/github-changelog-generator) | ||
|
||
``` | ||
export CHANGELOG_GITHUB_TOKEN=xxx | ||
github_changelog_generator --future-release v$VERSION | ||
``` | ||
|
||
Check if the file has been updated correctly. | ||
|
||
## Git Tag | ||
|
||
Commit these changes to the "master" branch: | ||
|
||
``` | ||
git commit -v -a -m "Release version $VERSION" | ||
git push origin master | ||
``` | ||
|
||
And tag it with a signed tag: | ||
|
||
``` | ||
git tag -s -m "Version $VERSION" v$VERSION | ||
``` | ||
|
||
Push the tag. | ||
|
||
``` | ||
git push --tags | ||
``` | ||
|
||
## GitHub Release | ||
|
||
Create a new release for the newly created Git tag. | ||
https://github.com/Icinga/icingaweb2-module-pnp/releases |