Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.13.0 #1107

Merged
merged 2 commits into from
Sep 19, 2017
Merged

v0.13.0 #1107

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.12.0
current_version = 0.13.0
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## HEAD
## 0.13.0
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need a new HEAD section?


**Features**

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM golang:1.7.6
MAINTAINER Eric Holmes <eric@remind101.com>

LABEL version 0.12.0
LABEL version 0.13.0

RUN apt-get update -yy && \
apt-get install -yy git make curl libxml2-dev libxmlsec1-dev liblzma-dev pkg-config xmlsec1
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.PHONY: build test bootstrap

REPO = remind101/empire
TYPE = patch
TYPE ?= patch
ARTIFACTS ?= build

cmds: build/empire build/emp
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.12.0
0.13.0
2 changes: 1 addition & 1 deletion cmd/emp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ A CLI for Empire.
You can always download the latest version with:

```console
$ curl -L https://github.com/remind101/empire/releases/download/v0.12.0/emp-`uname -s`-`uname -m` \
$ curl -L https://github.com/remind101/empire/releases/download/v0.13.0/emp-`uname -s`-`uname -m` \
> /usr/local/bin/emp
```

Expand Down
2 changes: 1 addition & 1 deletion cmd/emp/dev.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package main

const (
Version = "0.12.0"
Version = "0.13.0"
)
2 changes: 1 addition & 1 deletion version.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package empire

// The version of Empire.
const Version = "0.12.0"
const Version = "0.13.0"