Skip to content

Commit

Permalink
Fix for #10
Browse files Browse the repository at this point in the history
- Correctly set version in package names and package metadata
  • Loading branch information
christiangalsterer committed Feb 23, 2017
1 parent 0288f91 commit 0f19aef
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ BEAT_DESCRIPTION=Execute commands in a regular interval and the standard output
BEAT_DIR=github.com/christiangalsterer/execbeat
SYSTEM_TESTS=false
TEST_ENVIRONMENT=false
SNAPSHOT=no
ES_BEATS?=./vendor/github.com/elastic/beats
# GOPACKAGES=$(shell glide novendor)
GOPACKAGES=$(shell go list ${BEAT_DIR}/... | grep -v /vendor/)
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,11 @@ This will fetch and create all images required for the build process. The comple

# Releases

3.1.1 (WiP) [Download](https://github.com/christiangalsterer/execbeat/releases/tag/3.1.1)

Bugfix release containing the following changes:
* [Set correct version in package names and package metadata](https://github.com/christiangalsterer/execbeat/issues/10)

3.1.0 (2017-02-23) [Download](https://github.com/christiangalsterer/execbeat/releases/tag/3.1.0)

Feature and bugfix release containing the following changes:
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"os"
)

var version = "3.1.0"
var version = "3.1.1-SNAPSHOT"
var name = "execbeat"

func main() {
Expand Down
3 changes: 3 additions & 0 deletions version.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package main

const appVersion = "3.1.1"
1 change: 1 addition & 0 deletions version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
version: "3.1.1"

0 comments on commit 0f19aef

Please sign in to comment.