From 5379b00b73376822ce3a11f5ef6198fa4d389656 Mon Sep 17 00:00:00 2001 From: Jacob Freck Date: Fri, 2 Nov 2018 11:45:53 -0700 Subject: [PATCH] Release: 0.10.1 (#682) * update version * update changelog for 0.10.1 release * update relevent links --- CHANGELOG.md | 10 +++++++++- 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, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acd6990e..63cd1639 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog -## 0.10.0 (2018-10-29) +## 0.10.1 (2018-11-02) + +**Features** +* Include cluster creation time in cluster list and cluster get output (#678) ([a0bc2f0](https://github.com/Azure/aztk/commit/a0bc2f0)), closes [#678](https://github.com/Azure/aztk/issues/678) + +**Bug Fixes** +* Verify Batch task has node_info (#681) ([385040d](https://github.com/Azure/aztk/commit/385040d)), closes [#681](https://github.com/Azure/aztk/issues/681) + +## 0.10.0 (2018-10-29) **Breaking Changes** * Remove deprecated SDK API code (#671) ([fc50536](https://github.com/Azure/aztk/commit/fc50536)), closes [#671](https://github.com/Azure/aztk/issues/671) diff --git a/README.md b/README.md index c59400f4..c52a8660 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.9.1/account_setup.sh -O account_setup.sh && +wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.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 e0a3eb31..882d978d 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.9.1/account_setup.py -O account_setup.py && +wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.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 f4ff3221..7f7ad97b 100644 --- a/aztk/version.py +++ b/aztk/version.py @@ -23,7 +23,7 @@ # DEALINGS IN THE SOFTWARE. major = 0 minor = 10 -patch = 0 +patch = 1 suffix = "" diff --git a/docs/00-getting-started.md b/docs/00-getting-started.md index 6d828039..dc8488fb 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.9.1/account_setup.sh && +wget -q https://raw.githubusercontent.com/Azure/aztk/v0.10.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 3cdb3d12..f9e3928e 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.9.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.10.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.