Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>

<VersionFile>4.14.2</VersionFile>
<VersionPrefix>4.14.2</VersionPrefix>
<VersionFile>4.14.3</VersionFile>
<VersionPrefix>4.14.3</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyVersion>$(VersionFile)</AssemblyVersion>
<FileVersion>$(VersionFile)</FileVersion>
Expand Down
22 changes: 11 additions & 11 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<RuntimeVersion8>8.0.0</RuntimeVersion8>
<AspNetCoreVersion8>8.0.27</AspNetCoreVersion8>
<EfCoreVersion8>8.0.27</EfCoreVersion8>
<RuntimeVersion9>9.0.16</RuntimeVersion9>
<AspNetCoreVersion9>9.0.16</AspNetCoreVersion9>
<EfCoreVersion9>9.0.16</EfCoreVersion9>
<RuntimeVersion10>10.0.8</RuntimeVersion10>
<AspNetCoreVersion10>10.0.8</AspNetCoreVersion10>
<EfCoreVersion10>10.0.8</EfCoreVersion10>
<AspNetCoreVersion8>8.0.28</AspNetCoreVersion8>
<EfCoreVersion8>8.0.28</EfCoreVersion8>
<RuntimeVersion9>9.0.17</RuntimeVersion9>
<AspNetCoreVersion9>9.0.17</AspNetCoreVersion9>
<EfCoreVersion9>9.0.17</EfCoreVersion9>
<RuntimeVersion10>10.0.9</RuntimeVersion10>
<AspNetCoreVersion10>10.0.9</AspNetCoreVersion10>
<EfCoreVersion10>10.0.9</EfCoreVersion10>
</PropertyGroup>
<ItemGroup>
<!-- For Sample Apps -->
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.14.0" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.14.1" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.14.1" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.14.2" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.14.2" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.14.2" />
<!-- Test dependencies -->
<PackageVersion Include="bunit" Version="1.38.5" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
Expand Down
14 changes: 14 additions & 0 deletions WHATSNEW.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## V4.14.3

### Components

- \[Chore\] Publish symbols from CI builds to internal symbol server ([#4910](https://github.com/microsoft/fluentui-blazor/pull/4910))
- \[Chore\] Update dependencies in package.json ([#4946](https://github.com/microsoft/fluentui-blazor/pull/4946))
- \[Docs\] Update link to v5 docs ([#4927](https://github.com/microsoft/fluentui-blazor/pull/4927))

### Icons and Emoji

- Update to Fluent UI System Icons 1.1.330

See the commit history in the Fluent UI System Icons repository [commit history](https://github.com/microsoft/fluentui-system-icons/commits/main/) for the full list of changes.

## V4.14.2

### Components
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ variables:
# File and Package version
# dev branch: 1.2.4-Preview-23282-1' (PackageSuffix is always ignored in Dev branch)
# main branch: 1.2.4-RC.1' (PackageSuffix is ignored, if empty, in Main branch)
FileVersion: '4.14.2' # Set the next final version here.
FileVersion: '4.14.3' # Set the next final version here.
PackageSuffix: ''
2 changes: 1 addition & 1 deletion examples/Demo/Shared/Pages/Home/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@

<h2>Latest releases</h2>
<ul class="news">
<li><NewsDate Day="24" Month="Jun" Year="26" /><a href="/WhatsNew">v4.14.3 released</a></li>
<li><NewsDate Day="19" Month="May" Year="26" /><a href="/WhatsNew">v4.14.2 released</a></li>
<li><NewsDate Day="22" Month="Apr" Year="26" /><a href="/WhatsNew">v4.14.1 released</a></li>
<li><NewsDate Day="13" Month="Feb" Year="26" /><a href="/WhatsNew">v4.14.0 released</a></li>
<li><NewsDate Day="28" Month="Nov" Year="25" /><a href="/WhatsNew">v4.13.2 released</a></li>
</ul>

<p>
Expand Down
14 changes: 14 additions & 0 deletions examples/Demo/Shared/wwwroot/docs/WhatsNew.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## V4.14.3

### Components

- \[Chore\] Publish symbols from CI builds to internal symbol server ([#4910](https://github.com/microsoft/fluentui-blazor/pull/4910))
- \[Chore\] Update dependencies in package.json ([#4946](https://github.com/microsoft/fluentui-blazor/pull/4946))
- \[Docs\] Update link to v5 docs ([#4927](https://github.com/microsoft/fluentui-blazor/pull/4927))

### Icons and Emoji

- Update to Fluent UI System Icons 1.1.330

See the commit history in the Fluent UI System Icons repository [commit history](https://github.com/microsoft/fluentui-system-icons/commits/main/) for the full list of changes.

## V4.14.2

### Components
Expand Down
314 changes: 157 additions & 157 deletions src/Assets/FluentUI.Icons/Icons/Color/Color16.cs

Large diffs are not rendered by default.

392 changes: 196 additions & 196 deletions src/Assets/FluentUI.Icons/Icons/Color/Color20.cs

Large diffs are not rendered by default.

Loading
Loading