Bump values to 0.4.1
This commit is contained in:
parent
62add3269c
commit
eeac69939c
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
## 0.4.1 (January 13, 2016)
|
||||
|
||||
SECURITY:
|
||||
|
||||
* Build against Go 1.5.3 to mitigate a security vulnerability introduced in
|
||||
Go 1.5. For more information, please see
|
||||
https://groups.google.com/forum/#!topic/golang-dev/MEATuOi_ei4
|
||||
|
||||
This is a security-only release; other than the version number and building
|
||||
against Go 1.5.3, there are no changes from 0.4.0.
|
||||
|
||||
## 0.4.0 (December 10, 2015)
|
||||
|
||||
DEPRECATIONS/BREAKING CHANGES:
|
||||
|
|
|
@ -10,7 +10,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -y -q \
|
|||
git mercurial bzr \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
ENV GOVERSION 1.5.1
|
||||
ENV GOVERSION 1.5.3
|
||||
RUN mkdir /goroot && mkdir /gopath
|
||||
RUN curl https://storage.googleapis.com/golang/go${GOVERSION}.linux-amd64.tar.gz \
|
||||
| tar xvzf - -C /goroot --strip-components=1
|
||||
|
|
|
@ -10,7 +10,7 @@ var GitCommit string
|
|||
var GitDescribe string
|
||||
|
||||
// The main version number that is being run at the moment.
|
||||
const Version = "0.4.0"
|
||||
const Version = "0.4.1"
|
||||
|
||||
// A pre-release marker for the version. If this is "" (empty string)
|
||||
// then it means that it is a final release. Otherwise, this is a pre-release
|
||||
|
|
|
@ -2,7 +2,7 @@ set :base_url, "https://www.vaultproject.io/"
|
|||
|
||||
activate :hashicorp do |h|
|
||||
h.name = "vault"
|
||||
h.version = "0.4.0"
|
||||
h.version = "0.4.1"
|
||||
h.github_slug = "hashicorp/vault"
|
||||
h.website_root = "website"
|
||||
|
||||
|
|
Loading…
Reference in New Issue