From b7da355618173c15d277b458a7e1fe10e3273c8c Mon Sep 17 00:00:00 2001 From: Jacob Freck Date: Fri, 5 Oct 2018 13:07:15 -0700 Subject: [PATCH] Release: 0.9.1 (#669) * update changelog and version * update docs links to new version number --- CHANGELOG.md | 6 ++++++ README.md | 2 +- account_setup.sh | 2 +- aztk/version.py | 2 +- docs/00-getting-started.md | 2 +- docs/12-docker-image.md | 2 +- 6 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e98fd5d4..ea6da4bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.9.1 (2018-10-5) +**Bug Fixes** +* Fix: pin all node dependencies not in Pipfile (#667) ([0606598](https://github.com/Azure/aztk/commit/0606598)), closes [#667](https://github.com/Azure/aztk/issues/667) +* Fix: vsts integration tests block (#657) ([4a60c8a](https://github.com/Azure/aztk/commit/4a60c8a)), closes [#657](https://github.com/Azure/aztk/issues/657) +* Fix: vsts mutliline secrets (#668) ([cb62207](https://github.com/Azure/aztk/commit/cb62207)), closes [#668](https://github.com/Azure/aztk/issues/668) + ## 0.9.0 (2018-08-30) **Breaking Changes** diff --git a/README.md b/README.md index 05286107..c59400f4 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ This toolkit is built on top of Azure Batch but does not require any Azure Batch ``` 3. Login or register for an [Azure Account](https://azure.microsoft.com), navigate to [Azure Cloud Shell](https://shell.azure.com), and run: ```sh -wget -q https://raw.githubusercontent.com/Azure/aztk/v0.8.1/account_setup.sh -O account_setup.sh && +wget -q https://raw.githubusercontent.com/Azure/aztk/v0.9.1/account_setup.sh -O account_setup.sh && chmod 755 account_setup.sh && /bin/bash account_setup.sh ``` diff --git a/account_setup.sh b/account_setup.sh index 6a098b59..e0a3eb31 100644 --- a/account_setup.sh +++ b/account_setup.sh @@ -4,7 +4,7 @@ echo "Installing dependencies..." && pip install --force-reinstall --upgrade --user pyyaml==3.12 azure==3.0.0 azure-cli-core==2.0.30 msrestazure==0.4.25 > /dev/null 2>&1 && echo "Finished installing dependencies." && echo "Getting account setup script..." && -wget -q https://raw.githubusercontent.com/Azure/aztk/v0.8.1/account_setup.py -O account_setup.py && +wget -q https://raw.githubusercontent.com/Azure/aztk/v0.9.1/account_setup.py -O account_setup.py && chmod 755 account_setup.py && echo "Finished getting account setup script." && echo "Running account setup script..." && diff --git a/aztk/version.py b/aztk/version.py index ed2eb4a5..2223ec12 100644 --- a/aztk/version.py +++ b/aztk/version.py @@ -23,7 +23,7 @@ # DEALINGS IN THE SOFTWARE. major = 0 minor = 9 -patch = 0 +patch = 1 suffix = "" diff --git a/docs/00-getting-started.md b/docs/00-getting-started.md index 72491dfc..6d828039 100644 --- a/docs/00-getting-started.md +++ b/docs/00-getting-started.md @@ -78,7 +78,7 @@ The script outputs all of the necessary information to use `aztk`, copy the outp #### Usage Copy and paste the following into an [Azure Cloud Shell](https://shell.azure.com): ```sh -wget -q https://raw.githubusercontent.com/Azure/aztk/v0.8.1/account_setup.sh && +wget -q https://raw.githubusercontent.com/Azure/aztk/v0.9.1/account_setup.sh && chmod 755 account_setup.sh && /bin/bash account_setup.sh ``` diff --git a/docs/12-docker-image.md b/docs/12-docker-image.md index 47f3a3db..3cdb3d12 100644 --- a/docs/12-docker-image.md +++ b/docs/12-docker-image.md @@ -24,7 +24,7 @@ aztk spark cluster create ... --docker-repo aztk/base:spark2.2.0 "--docker-run-o ``` ## Using a custom Docker Image -You can build your own Docker image on top or beneath one of our supported base images _OR_ you can modify the [supported Dockerfiles](https://github.com/Azure/aztk/tree/v0.8.1/docker-image) and build your own image that way. +You can build your own Docker image on top or beneath one of our supported base images _OR_ you can modify the [supported Dockerfiles](https://github.com/Azure/aztk/tree/v0.9.1/docker-image) and build your own image that way. Once you have your Docker image built and hosted publicly, you can then use the **--docker-repo** parameter in your **aztk spark cluster create** command to point to it.