diff --git a/CHANGELOG.md b/CHANGELOG.md index ee18df0..aa8ad1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ - - Add a command healthcheck type +Version 0.1.0 - 2016-02-01 - Add the ability to negotiate SSL connections when doing healthchecks. - Remove some of the scary warning text from README diff --git a/README.md b/README.md index d013985..63b52bc 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ extension of in-datacenter Anycast. It can also be used to provide HA NAT servic # WARNING -Please use release version 0.0.8 rather than master. +Please use release version 0.1.0 rather than master. # NAT @@ -101,7 +101,7 @@ FIXME!! More details about how to test / curl things here.. You can install binary release versions onto x86 Linux directly from github, e.g. - sudo wget https://github.com/bobtfish/AWSnycast/releases/download/v0.0.8/AWSnycast -O /usr/local/bin/AWSnycast + sudo wget https://github.com/bobtfish/AWSnycast/releases/download/v0.1.0/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 a0db817..c048d0f 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.10 +VERSION = 0.1.0 ITERATION = yelp$(REAL_BUILD_NUMBER) ARCH := $(shell facter architecture) diff --git a/version.go b/version.go index b2aa010..310674e 100644 --- a/version.go +++ b/version.go @@ -1,3 +1,3 @@ package main -const version = "0.0.10" +const version = "0.1.0"