Skip to content

Commit

Permalink
Merge pull request #207 from sillsdev/v3.0.0-prepare-for-release
Browse files Browse the repository at this point in the history
Release v3.0.0
  • Loading branch information
lyonsil authored Nov 21, 2024
2 parents 34b3bf6 + 82154d8 commit 2ae2a99
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [3.0.0] - 2024-11-21

### Added

- Added support for netstandard2.0

### Changed

- Exception messages on .NET 6+ contain more information when dynamic library loading fails
- Update dependencies to the latest stable versions

### Fixed

- Fixed a bug when using a library compiled against icu-dotnet netstandard1.6, when your project referenced a different version of icu-dotnet
Expand Down
9 changes: 5 additions & 4 deletions GitVersion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,19 @@ assembly-file-versioning-format: '{Major}.{Minor}.{Patch}.{env:GITVERSION_BUILD_
mode: ContinuousDeployment
branches:
master:
tag: beta
label: beta
regex: (origin/)?master
hotfix:
tag: beta
label: beta
regex: (origin/)?hotfix[/-]
increment: Patch
prevent-increment-of-merged-branch-version: false
prevent-increment:
of-merged-branch: false
track-merge-target: false
tracks-release-branches: false
is-release-branch: false
pull-request:
mode: ContinuousDeployment
tag: PR
label: PR
ignore:
sha: []
4 changes: 2 additions & 2 deletions source/icu.net.tests/icu.net.tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<ItemGroup>
<PackageReference Include="Icu4c.Win.Full.Lib" Version="62.1.4-beta" />
<PackageReference Include="Icu4c.Win.Min" Version="59.1.7" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NUnit" Version="3.13.3" />
<!--
Only version 4.3.2 of NUnit3TestAdapter is able to run tests for both .NET 8.0 and .NET Framework 4.6.1.
Expand All @@ -21,7 +21,7 @@
Going forward we're going to have to drop 4.6.1 support to be able to support newer .NET versions.
-->
<PackageReference Include="NUnit3TestAdapter" Version="4.3.2" />
<PackageReference Include="NUnit.Console" Version="3.17.0" />
<PackageReference Include="NUnit.Console" Version="3.18.3" />
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
<PackageReference Include="System.IO.FileSystem.Primitives" Version="4.3.0" />
</ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions source/icu.net/icu.net.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild" Version="5.10.3" PrivateAssets="all" />
<PackageReference Include="JetBrains.Annotations" Version="2022.1.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="all" />
<PackageReference Include="SIL.ReleaseTasks" Version="2.5.0" PrivateAssets="all" />
<PackageReference Include="GitVersion.MsBuild" Version="6.0.5" PrivateAssets="all" />
<PackageReference Include="JetBrains.Annotations" Version="2024.3.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="all" />
<PackageReference Include="SIL.ReleaseTasks" Version="3.0.0" PrivateAssets="all" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' != 'net40'">
Expand Down

0 comments on commit 2ae2a99

Please sign in to comment.