From ad3a809da13ca1dac49d9a6e5b68aca8b3f3b838 Mon Sep 17 00:00:00 2001 From: Zach Trocinski <30884663+oZakari@users.noreply.github.com> Date: Tue, 21 Nov 2023 14:39:34 -0600 Subject: [PATCH] Update for v0.17.0 (#689) --- docs/wiki/Accelerator.md | 8 ++++---- version.json | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/wiki/Accelerator.md b/docs/wiki/Accelerator.md index 8592ebc9f..b54466552 100644 --- a/docs/wiki/Accelerator.md +++ b/docs/wiki/Accelerator.md @@ -219,16 +219,16 @@ With the ALZ Accelerator framework, we have designed the pipelines and directory 1. Using the ALZ PowerShell Module, there is a cmdlet called `Get-ALZBicepRelease`. This will download a specified release version from the remote ALZ-Bicep repository and pull down to the local directory where your Accelerator framework was initially deployed. - Here is an example of using the cmdlet to pull down version v0.16.6: + Here is an example of using the cmdlet to pull down version v0.17.0: ```powershell - Get-ALZGithubRelease -githubRepoUrl "https://github.com/Azure/ALZ-Bicep" -release "v0.16.6" -directoryForReleases "C:\Repos\ALZ\accelerator\upstream-releases\" + Get-ALZGithubRelease -githubRepoUrl "https://github.com/Azure/ALZ-Bicep" -release "v0.17.0" -directoryForReleases "C:\Repos\ALZ\accelerator\upstream-releases\" ``` -1. Once the ALZ Bicep release has been downloaded, you will need to update `upstream-releases-version` within the environment variables file (.env) with the version number of the release that you just downloaded. For example, if you downloaded v0.16.5, you would update the file with the following: +1. Once the ALZ Bicep release has been downloaded, you will need to update `upstream-releases-version` within the environment variables file (.env) with the version number of the release that you just downloaded. For example, if you downloaded v0.16.6, you would update the file with the following: ```text - UPSTREAM_RELEASE_VERSION="v0.16.6" + UPSTREAM_RELEASE_VERSION="v0.17.0" ``` 1. You can now deploy the updated modules. diff --git a/version.json b/version.json index 7a995fa76..cda46aead 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { - "version": "0.16.6", - "gitTag": "v0.16.6", - "releaseNotes": "https://github.com/Azure/ALZ-Bicep/releases/tag/v0.16.6", - "releaseDateTimeUTC": "20231017T075134000Z" + "version": "0.17.0", + "gitTag": "v0.17.0", + "releaseNotes": "https://github.com/Azure/ALZ-Bicep/releases/tag/v0.17.0", + "releaseDateTimeUTC": "20231121T2030288784Z" }