Skip to content

Commit 13f0bf7

Browse files
authored
Prep for next release (v0.11) (#1572)
1 parent acb9c91 commit 13f0bf7

File tree

10 files changed

+31
-18
lines changed

10 files changed

+31
-18
lines changed

docs-mslearn/toolkit/changelog.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,17 @@ The following section lists features and enhancements that are currently in deve
3030

3131
<br><a name="latest"></a>
3232

33+
## v0.11
34+
35+
_Released June 2, 2025_
36+
37+
> [!div class="nextstepaction"]
38+
> [Download](https://github.com/microsoft/finops-toolkit/releases/tag/v0.11)
39+
> [!div class="nextstepaction"]
40+
> [Full changelog](https://github.com/microsoft/finops-toolkit/compare/v0.10...v0.11)
41+
42+
<br>
43+
3344
## v0.10
3445

3546
_Released May 4, 2025_

docs/_includes/ftkver.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10
1+
0.11-dev

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ftk",
3-
"version": "0.10.0",
3+
"version": "0.11.0-dev",
44
"description": "Starter kits, scripts, and advanced solutions to accelerate your FinOps journey in the Microsoft Cloud.",
55
"main": "index.js",
66
"directories": {

src/optimization-engine/ftkver.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10
1+
0.11-dev

src/powershell/Private/Get-VersionNumber.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
function Get-VersionNumber
55
{
66
param()
7-
return '0.10'
7+
return '0.11-dev'
88
}

src/powershell/Tests/Integration/Toolkit.Tests.ps1

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
Describe 'Get-FinOpsToolkitVersion' {
77
It 'Should return all known releases' {
88
# Arrange
9-
$plannedRelease = '0.10'
10-
$expected = @('0.9', '0.8', '0.7', '0.6', '0.5', '0.4', '0.3', '0.2', '0.1.1', '0.1', '0.0.1')
9+
$plannedRelease = '0.11'
10+
$expected = @('0.10', '0.9', '0.8', '0.7', '0.6', '0.5', '0.4', '0.3', '0.2', '0.1.1', '0.1', '0.0.1')
1111

1212
# Act
1313
$result = Get-FinOpsToolkitVersion
@@ -35,13 +35,15 @@ Describe 'Get-FinOpsToolkitVersion' {
3535
$verStr | Should -BeIn (@($plannedRelease) + $expected) -Because "version '$verStr' should be added to the verification test"
3636

3737
# Templates
38-
CheckFile "finops-alerts-v$verStr.zip" '0.9' $null
39-
CheckFile "finops-hub-dashboard.json" '0.8' $null
40-
CheckFile "finops-hub-v$verStr.zip" $null $null
41-
CheckFile "finops-workbooks-v$verStr.zip" '0.6' $null
42-
CheckFile "governance-workbook-v$verStr.zip" '0.1' '0.5'
43-
CheckFile "optimization-engine-v$verStr.zip" '0.4' $null
44-
CheckFile "optimization-workbook-v$verStr.zip" $null '0.5'
38+
CheckFile "finops-alerts-v$verStr.zip" '0.9' $null
39+
CheckFile "finops-hub-dashboard.json" '0.8' $null
40+
CheckFile "finops-hub-fabric-setup-Hub.kql" '0.10' $null
41+
CheckFile "finops-hub-fabric-setup-Ingestion.kql" '0.10' $null
42+
CheckFile "finops-hub-v$verStr.zip" $null $null
43+
CheckFile "finops-workbooks-v$verStr.zip" '0.6' $null
44+
CheckFile "governance-workbook-v$verStr.zip" '0.1' '0.5'
45+
CheckFile "optimization-engine-v$verStr.zip" '0.4' $null
46+
CheckFile "optimization-workbook-v$verStr.zip" $null '0.5'
4547

4648
# Power BI
4749
CheckFile "PowerBI-demo.zip" '0.7' $null
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10
1+
0.11-dev
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10
1+
0.11-dev

src/workbooks/.scaffold/ftkver.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.10
1+
0.11-dev

0 commit comments

Comments
 (0)