Skip to content

Commit

Permalink
Task/bump to 3.2.1 (#262)
Browse files Browse the repository at this point in the history
* Bump HIC.TypeGuesser from 1.1.0 to 1.2.4
* Enable nullable annotations
* Use the .Net 8 SDK for building
* Bump NUnit from 4.0.1 to 4.1.0
* Bump Microsoft.Data.SqlClient from 5.1.5 to 5.2.0
* Prepare 3.2.1 release
  • Loading branch information
JFriel committed Mar 11, 2024
1 parent 3007e4e commit 874e6c8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
run: dotnet test --logger "console;verbosity=minimal" --nologo
- name: Pack
run: |
dotnet pack -c Release -p:SymbolPackageFormat=snupkg --include-symbols --nologo -p:Version=$(fgrep AssemblyInformationalVersion SharedAssemblyInfo.cs|cut -d'"' -f2) -o .
dotnet pack -c Release -p:DebugType=full -p:SymbolPackageFormat=snupkg --include-symbols --nologo -p:Version=$(fgrep AssemblyInformationalVersion SharedAssemblyInfo.cs|cut -d'"' -f2) -o .
- name: Nuget push
if: contains(github.ref,'refs/tags/')
run: dotnet nuget push HIC.FAnsiSql.*.nupkg -s https://api.nuget.org/v3/index.json -k ${{ secrets.NUGET_KEY }} --skip-duplicate
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [3.2.1] - 2024-03-11

- Add Setter for DiscoveredDatabaseHelper Create Database Timeout

## [3.2.0] - 2023-03-04
## [3.2.0] - 2024-03-04

- Target .Net 8.0
- Enable AOT compatibility, though upstream dependencies still have issues
Expand Down
8 changes: 6 additions & 2 deletions FAnsiSql/FAnsi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
<IsAotCompatible>true</IsAotCompatible>
<NoWarn>CS1591</NoWarn>
<NeutralLanguage>en-GB</NeutralLanguage>
<DebugType>embedded</DebugType>
<DebugType>embedded</DebugType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<WarningLevel>1</WarningLevel>
Expand All @@ -34,7 +35,7 @@
<None Include="Discovery\TypeTranslation\TypeTranslation.cd" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HIC.TypeGuesser" Version="1.2.3" />
<PackageReference Include="HIC.TypeGuesser" Version="1.2.4" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.0" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand All @@ -44,6 +45,9 @@
<PackageReference Include="Npgsql" Version="8.0.2" />
<PackageReference Include="Oracle.ManagedDataAccess.Core" Version="3.21.130" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<Compile Update="FAnsiStrings.Designer.cs">
<DesignTime>True</DesignTime>
Expand Down
6 changes: 3 additions & 3 deletions SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

[assembly: AssemblyVersion("3.2.0")]
[assembly: AssemblyFileVersion("3.2.0")]
[assembly: AssemblyInformationalVersion("3.2.0")]
[assembly: AssemblyVersion("3.2.1")]
[assembly: AssemblyFileVersion("3.2.1")]
[assembly: AssemblyInformationalVersion("3.2.1")]

0 comments on commit 874e6c8

Please sign in to comment.