Skip to content

Commit

Permalink
v.1.0.0-preview.35 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakamoto committed Apr 26, 2024
1 parent 46c5855 commit 5673a77
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions BlazingStory/VersionInfo.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
namespace BlazingStory;
internal static class VersionInfo
{
internal static string GetVersionText() => "1.0.0-preview.34";
internal static string GetEscapedVersionText() => "1.0.0-preview.34";
internal static string GetFormattedVersionText() => "1.0 Preview 34";
internal static string GetVersionText() => "1.0.0-preview.35";
internal static string GetEscapedVersionText() => "1.0.0-preview.35";
internal static string GetFormattedVersionText() => "1.0 Preview 35";
internal static string GetBuildTimestamp() => "April 2024";
}
2 changes: 1 addition & 1 deletion ProjectTemplate/BlazingStory.ProjectTemplates.msbuild
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<Import Project="../VersionInfo.props"/>

<PropertyGroup>
<PackageVersion>$(Version).1</PackageVersion>
<PackageVersion>$(Version)</PackageVersion>
</PropertyGroup>

<Target Name="PreparePackageProperties" BeforeTargets="GenerateNuspec">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="BlazingStory" Version="1.0.0-preview.34" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.35" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
</PropertyGroup>

<ItemGroup Condition=" '$(Framework)' == 'net7.0' ">
<PackageReference Include="BlazingStory" Version="1.0.0-preview.34" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.35" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.18" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.18" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Condition=" '$(Framework)' == 'net8.0' ">
<PackageReference Include="BlazingStory" Version="1.0.0-preview.34" />
<PackageReference Include="BlazingStory" Version="1.0.0-preview.35" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="8.0.4" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="8.0.4" PrivateAssets="all" />
</ItemGroup>
Expand Down
3 changes: 3 additions & 0 deletions RELEASE-NOTES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v.1.0.0-preview.35
- Fix: a Story server app deployed under the subpath didn't work.

v.1.0.0-preview.34
- Fix: navigation next/prev stories, docs, and components didn't work.
- Improve: Brush up the project templates and add new item templates.
Expand Down
2 changes: 1 addition & 1 deletion VersionInfo.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>1.0.0-preview.34</Version>
<Version>1.0.0-preview.35</Version>
<Copyright>Copyright © 2023-2024 J.Sakamoto, Mozilla Public License 2.0</Copyright>
<Authors>J.Sakamoto</Authors>
<RepositoryType>git</RepositoryType>
Expand Down

0 comments on commit 5673a77

Please sign in to comment.