Skip to content

Commit

Permalink
Release version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lazyfrosch committed Oct 17, 2017
1 parent aa380b8 commit bc8381f
Show file tree
Hide file tree
Showing 4 changed files with 54 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<[email protected]> <[email protected]>
<[email protected]> <[email protected]>
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Markus Frosch <[email protected]>
45 changes: 45 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Release Workflow

Specify the release version.

```
VERSION=0.1.0
```

## Issues

Check issues at https://github.com/Icinga/icingaweb2-module-toplevelview/issues

## Authors

Update the [.mailmap](.mailmap) and [AUTHORS](AUTHORS) files:

```
git checkout master
git log --use-mailmap | grep ^Author: | cut -f2- -d' ' | sort | uniq > AUTHORS
```

## Update metadata

Edit and update [module.info](module.info).

## 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
```
7 changes: 6 additions & 1 deletion module.info
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Module: toplevelview
Version: 0.0.0
Version: 0.1.0
Description: Top Level View
Top Level View is a hierarchy based status view for Icinga Web 2.

You can define a hierarchical structure containing hosts, services and
hostgroups. And the view presents you an overview of the overall status
of the sub-hierarchies.

0 comments on commit bc8381f

Please sign in to comment.