diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c4ceee677a..ee39685b00 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,11 +1,13 @@ Changelog ========= -0.11.2 - TBD ------------- +0.11.2 - June 12, 2015 +---------------------- * Fix a bug with ``start_timestamp`` and ``end_timestamp`` sometimes returning an invalid value in a local instead of UTC timezone. (bug-fix) +* Fix to get PollingSensor working again. Sensors of type PollingSensor were not being treated + as such and as a result would fail after the 1st poll. (bug-fix) 0.11.1 - June 8, 2015 --------------------- diff --git a/tools/st2_bootstrap.sh b/tools/st2_bootstrap.sh index ef21d64381..94fab77df9 100644 --- a/tools/st2_bootstrap.sh +++ b/tools/st2_bootstrap.sh @@ -7,7 +7,7 @@ STABLE=`curl -Ss -q https://downloads.stackstorm.net/deb/pool/trusty_stable/main LATEST=`curl -Ss -q https://downloads.stackstorm.net/deb/pool/trusty_unstable/main/s/st2api/ | grep 'amd64.deb' | sed -e "s~.*>st2api_\(.*\)-.*<.*~\1~g" | sort --version-sort -r | uniq | head -n 1` if [ -z $1 ]; then - ST2VER=0.11.1 + ST2VER=0.11.2 else if [[ "$1" == "stable" ]]; then ST2VER=${STABLE} diff --git a/tools/st2_deploy.sh b/tools/st2_deploy.sh index bd074e4528..7f8255cdbd 100755 --- a/tools/st2_deploy.sh +++ b/tools/st2_deploy.sh @@ -77,7 +77,7 @@ sleep ${WARNING_SLEEP_DELAY} if [ -z $1 ] then - VER='0.11.1' + VER='0.11.2' elif [[ "$1" == "latest" ]]; then VER='0.12dev' else