Skip to content

Commit c333774

Browse files
authored
Change version to v0.14.1-pre (#22)
# Pull Request ## Description Update to version v0.14.1-pre of the provider ## License By submitting this pull request, I confirm that my contribution is made under the terms of the projects associated license.
1 parent e09257e commit c333774

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/ALZ/Assets/alz-bicep-config/v0.14.0-pre.config.json renamed to src/ALZ/Assets/alz-bicep-config/v0.14.1-pre.config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "v0.14.0-pre",
2+
"version": "v0.14.1-pre",
33
"module_url": "https://github.com/Azure/ALZ-Bicep",
44
"config_files": [
55
{
@@ -416,7 +416,7 @@
416416
},
417417
"UpstreamReleaseVersion": {
418418
"Type": "Computed",
419-
"Value": "v0.14.0-pre",
419+
"Value": "v0.14.1-pre",
420420
"Targets": [
421421
{
422422
"Name": "UPSTREAM_RELEASE_VERSION",

src/ALZ/Private/Get-ALZBicepConfig.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ function Get-ALZBicepConfig {
44
#>
55
param(
66
[Parameter(Mandatory = $false)]
7-
[string] $alzBicepVersion = "v0.14.0-pre"
7+
[string] $alzBicepVersion = "v0.14.1-pre"
88
)
99
# import the config from the json file inside assets and tranform it to a powershell object
1010
$bicepConfig = Get-Content -Path (Join-Path $(Get-ScriptRoot) "../Assets/alz-bicep-config" "$alzBicepVersion.config.json" ) | ConvertFrom-Json

src/ALZ/Public/New-ALZEnvironment.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function New-ALZEnvironment {
1919
.EXAMPLE
2020
New-ALZEnvironment -alzEnvironmentDestination "."
2121
.EXAMPLE
22-
New-ALZEnvironment -alzEnvironmentDestination "." -alzBicepVersion "v0.14.0-pre"
22+
New-ALZEnvironment -alzEnvironmentDestination "." -alzBicepVersion "v0.14.1-pre"
2323
#>
2424
[CmdletBinding(SupportsShouldProcess = $true)]
2525
param (
@@ -30,7 +30,7 @@ function New-ALZEnvironment {
3030
[string] $alzEnvironmentDestination = ".",
3131

3232
[Parameter(Mandatory = $false)]
33-
[string] $alzBicepVersion = "v0.14.0-pre",
33+
[string] $alzBicepVersion = "v0.14.1-pre",
3434

3535
[Parameter(Mandatory = $false)]
3636
[ValidateSet("bicep", "terraform")]

0 commit comments

Comments
 (0)