Skip to content

Commit 29605c6

Browse files
Merge pull request #516 from TimeWarpEngineering/Cramer/2024-12-10/yaml
Update Docs
2 parents a7b6f31 + 24e872c commit 29605c6

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

Diff for: .github/workflows/release-build.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,18 @@ jobs:
7676
run: |
7777
[xml]$xml = Get-Content -Path "Directory.Build.props"
7878
$version = $xml.Project.PropertyGroup.TimeWarpStateVersion
79-
echo "Extracted version: $version"
79+
echo "Extracted version (raw): '$version'"
80+
$version = $version.Trim()
81+
echo "Extracted version (trimmed): '$version'"
8082
echo "::set-output name=VERSION::$version"
8183
shell: pwsh
8284

85+
8386
- name: Tag commit with version
8487
run: |
8588
git config --local user.email "[email protected]"
8689
git config --local user.name "GitHub Action"
87-
$version = "${{ steps.extract_version.outputs.VERSION }}" -replace "\+.*$",""
90+
$version = "${{ steps.extract_version.outputs.VERSION }}" -replace "\+.*$","" -replace "^\s+|\s+$", ""
8891
git tag -a $version -m "Release $version"
8992
git push origin $version
9093
shell: pwsh

Diff for: Documentation/Blogs/2024-02-TimeWarp-State-11-Release.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ TimeWarp.State 11.0.0 requires .NET 8.0 or later. The rebranding means you'll ne
4444
- Package references from `Blazor-State` to `TimeWarp.State`
4545
- Namespace references from `BlazorState` to `TimeWarp.State`
4646

47-
For detailed migration instructions, check our [Migration Guide](xref:BlazorState:Migration10-11.md).
47+
For detailed migration instructions, check our [Migration Guide](https://timewarpengineering.github.io/timewarp-state/Migrations/Migration9-10.html).
4848

4949
## Looking Forward
5050

Diff for: Documentation/Migrations/toc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- name: From 10.x to 11.x
2+
topicUid: TimeWarpState:Migration10-11.md
13
- name: From 9.x to 10.x
24
topicUid: BlazorState:Migration9-10.md
35
- name: From 8.x to 9.x

Diff for: Documentation/ReleaseNotes/toc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
- name: Release 11.0.0
2+
topicUid: TimeWarpState:Release.11.0.0.md
13
- name: Release 10.0.0
24
topicUid: BlazorState:Release.10.0.0.md
35
- name: Release 9.0.0

0 commit comments

Comments
 (0)