Skip to content

Commit

Permalink
Some final SDK adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Nov 14, 2023
1 parent 3fa09e7 commit f338cbb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 13 deletions.
20 changes: 10 additions & 10 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<RuntimeVersion>8.0.0-rc.2.23479.6</RuntimeVersion>
<AspNetCoreVersion>8.0.0-rc.2.23480.2</AspNetCoreVersion>
<EfCoreVersion>8.0.0-rc.2.23480.1</EfCoreVersion>
<RuntimeVersion>8.0.0</RuntimeVersion>
<AspNetCoreVersion>8.0.0</AspNetCoreVersion>
<EfCoreVersion>8.0.0</EfCoreVersion>
</PropertyGroup>
<ItemGroup>
<!-- build dependencies -->
<PackageVersion Include="Markdig" Version="0.33.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="$(AspNetCoreVersion)" />
<PackageVersion Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly" Version="$(AspNetCoreVersion)" />
<PackageVersion Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="$(AspNetCoreVersion)" />
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="8.0.0" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0-beta1.23472.1" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.8.0-3.final" />
<PackageVersion Include="Microsoft.EntityFrameworkCore" Version="$(EfCoreVersion)" />
<PackageVersion Include="Microsoft.Extensions.Configuration.CommandLine" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.0.0-rc.3" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.0.0-rc.3" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.0.0-rc.3" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageVersion Include="System.Text.Encodings.Web" Version="$(RuntimeVersion)" />
<PackageVersion Include="System.Text.Json" Version="$(RuntimeVersion)" />
<PackageVersion Include="System.Text.Encodings.Web" Version="8.0.0" />
<PackageVersion Include="System.Text.Json" Version="8.0.0" />
<!-- test dependencies -->
<PackageVersion Include="bunit" Version="1.25.1-preview" />
<PackageVersion Include="FluentAssertions" Version="7.0.0-alpha.3" />
Expand Down
5 changes: 4 additions & 1 deletion WHATSNEW.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## V4.0.0-rc.3
## V4.0.0
- FluentAccordionItem: Add `HeaderTemplate` parameter

- ## V4.0.0-rc.3
- Undo change template interactivity default to None. Default is now Server (same as regular Blazor template)
- FluentSplitter: Add support for collapsing panel 2 (right/bottom), add `OnCollapsed`, `OnExpanded` and `OnResized` event callbacks
- `variables.css` is imported in the automatically loaded library's css now
Expand Down
5 changes: 4 additions & 1 deletion examples/Demo/Shared/wwwroot/docs/WhatsNew.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
## V4.0.0-rc.3
## V4.0.0
- FluentAccordionItem: Add `HeaderTemplate` parameter

## V4.0.0-rc.3
- Undo change template interactivity default to None. Default is now Server (same as regular Blazor template)
- FluentSplitter: Add support for collapsing panel 2 (right/bottom), add `OnCollapsed`, `OnExpanded` and `OnResized` event callbacks
- `variables.css` is imported in the automatically loaded library's css now
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"sdk": {
"version": "8.0.100-rc.2.23502.2"
"version": "8.0.100"
}
}

0 comments on commit f338cbb

Please sign in to comment.