Skip to content

Commit

Permalink
Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lazyfrosch committed Aug 15, 2017
1 parent 07054f4 commit 6377405
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github_changelog_generator
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
since-tag=v1.0.1
7 changes: 7 additions & 0 deletions .mailmap
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>
9 changes: 9 additions & 0 deletions AUTHORS
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>
14 changes: 14 additions & 0 deletions CHANGELOG.md
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)*
59 changes: 59 additions & 0 deletions RELEASE.md
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

0 comments on commit 6377405

Please sign in to comment.