From 21b0230cc1221640d576bff2dfade4f225e0d099 Mon Sep 17 00:00:00 2001 From: Tomas Doran Date: Sun, 29 Nov 2015 02:21:51 +0000 Subject: [PATCH] Version 0.0.8 --- CHANGELOG.md | 3 ++- README.md | 4 ++-- package/Makefile | 2 +- version.go | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61dae96..54699b0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,11 @@ +Version 0.0.8 - 2015-11-29 - Fix crash on route tables which don't have an instance-id attached. - More improvements to error reporting in configuration - Make the error reporting of healthcheck configuration better by reporting all errors at once, rather than the first one. -Version 0.0.7 - 2015-11-28 +Version 0.0.7 - 2015-11-28 *BROKEN DO NOT USE* - Make config tell you about all the errors found when dieing at startup, rather than just the first one found. - Now requires the ec2:DescribeInstanceAttribute permission to run. diff --git a/README.md b/README.md index 1a3e6cf..6002652 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ extension of in-datacenter Anycast. It can also be used to provide HA NAT servic master is currently *highly* unstable. -If you're crazy enough to want to use this, please use release version 0.0.7 +If you're crazy enough to want to use this, please use release version 0.0.8 # NAT @@ -103,7 +103,7 @@ FIXME!! More details about how to test / curl things here.. You can install binary release versions onto x68 Linux directly from github, e.g. - sudo wget https://github.com/bobtfish/AWSnycast/releases/download/v0.0.7/AWSnycast -O /usr/local/bin/AWSnycast + sudo wget https://github.com/bobtfish/AWSnycast/releases/download/v0.0.8/AWSnycast -O /usr/local/bin/AWSnycast sudo chmod 700 /usr/local/bin/AWSnycast or you can install the .deb or .rpm packages found at the same location diff --git a/package/Makefile b/package/Makefile index ebee6c6..a358164 100644 --- a/package/Makefile +++ b/package/Makefile @@ -8,7 +8,7 @@ ifdef upstream_build_number else REAL_BUILD_NUMBER?=$(BUILD_NUMBER) endif -VERSION = 0.0.7 +VERSION = 0.0.8 ITERATION = yelp$(REAL_BUILD_NUMBER) ARCH := $(shell facter architecture) diff --git a/version.go b/version.go index 42edfd3..64db6ee 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const version = "0.0.7" +const version = "0.0.8"