version bump
This commit is contained in:
parent
de69674b86
commit
4685275fca
|
@ -1,4 +1,4 @@
|
|||
## 0.3.2 (UNRELEASED)
|
||||
## 0.3.2 (April 22, 2016)
|
||||
|
||||
IMPROVEMENTS:
|
||||
* core: Garbage collection partitioned to avoid system delays [GH-1012]
|
||||
|
@ -50,7 +50,7 @@ BUG FIXES:
|
|||
* client: Fix handling of environment variables containing multiple equal
|
||||
signs [GH-1115]
|
||||
|
||||
## 0.3.1 (Mars 16, 2016)
|
||||
## 0.3.1 (March 16, 2016)
|
||||
|
||||
__BACKWARDS INCOMPATIBILITIES:__
|
||||
* Service names that dont conform to RFC-1123 and RFC-2782 will fail
|
||||
|
|
|
@ -9,7 +9,7 @@ sudo apt-get install -y unzip curl wget vim
|
|||
# Download Nomad
|
||||
echo Fetching Nomad...
|
||||
cd /tmp/
|
||||
curl -sSL https://releases.hashicorp.com/nomad/0.3.1/nomad_0.3.1_linux_amd64.zip -o nomad.zip
|
||||
curl -sSL https://releases.hashicorp.com/nomad/0.3.2/nomad_0.3.2_linux_amd64.zip -o nomad.zip
|
||||
|
||||
echo Installing Nomad...
|
||||
unzip nomad.zip
|
||||
|
|
|
@ -10,4 +10,4 @@ const Version = "0.3.2"
|
|||
// 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
|
||||
// such as "dev" (in development), "beta", "rc1", etc.
|
||||
const VersionPrerelease = "rc2"
|
||||
const VersionPrerelease = ""
|
||||
|
|
Loading…
Reference in New Issue