diff --git a/CHANGELOG.md b/CHANGELOG.md index ab660221..e04ed157 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.2.0] - June 18th, 2020 +- Expose event dispatch URL as a config parameter +- Return experimentKey and variationKey with feature test decisions +- Expose health endpoint for all listeners +- Update API docs +- Streamline CI stages + ## [1.1.0] - May 21st, 2020 - Upgrade to use go-sdk 1.2.0. This adds support for multi-rule rollouts. diff --git a/scripts/ci_create_packages.sh b/scripts/ci_create_packages.sh index 40ed0a64..039120ca 100755 --- a/scripts/ci_create_packages.sh +++ b/scripts/ci_create_packages.sh @@ -8,7 +8,6 @@ if [[ $TRAVIS_OS_NAME == "linux" ]]; then make -e ci_build_dockerimage_alpine elif [[ $TRAVIS_OS_NAME == "osx" ]]; then echo "we're on osx" - mkdir /tmp/output_packages # make osx happy else echo "we're lost!" fi diff --git a/scripts/ci_upload_packages.sh b/scripts/ci_upload_packages.sh index ef7dd65f..fe01af93 100755 --- a/scripts/ci_upload_packages.sh +++ b/scripts/ci_upload_packages.sh @@ -1,9 +1,6 @@ #!/usr/bin/env bash set -euo pipefail -# this directory gets created by ci_create_packages.sh when it is shared into the container's /output directory -cd /tmp/output_packages - if [[ $TRAVIS_OS_NAME == "linux" ]]; then echo "we're on linux"