Skip to content

Commit 849d7fe

Browse files
committed
Version 2.0.0
1 parent 2219671 commit 849d7fe

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

ReleaseNotes.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release Notes
22

3+
## 2.0.0
4+
5+
- Changed framework to netstandard2.1 to work with any version of .NET
6+
37
## 1.3.1
48

59
- Update of various NuGet packages, especially the DistributedLock packages that fixes some problems

RunMethodsSequentially/RunMethodsSequentially.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
<GenerateDocumentationFile>true</GenerateDocumentationFile>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="DistributedLock" Version="2.3.1" />
9+
<PackageReference Include="DistributedLock" Version="2.3.2" />
1010
<PackageReference Include="DistributedLock.FileSystem" Version="1.0.1" />
11-
<PackageReference Include="DistributedLock.Postgres" Version="1.0.3" />
11+
<PackageReference Include="DistributedLock.Postgres" Version="1.0.4" />
1212
<PackageReference Include="DistributedLock.SqlServer" Version="1.0.2" />
13-
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.0" />
13+
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.0.1" />
1414
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
1515
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.0" />
1616
<PackageReference Include="Npgsql" Version="6.0.6" />
1717
</ItemGroup>
1818

1919
<PropertyGroup>
2020
<PackageId>Net.RunMethodsSequentially</PackageId>
21-
<PackageVersion>1.3.1</PackageVersion>
21+
<PackageVersion>2.0.0</PackageVersion>
2222
<Authors>Jon P Smith</Authors>
2323
<Description>Runs updates to single resources, e.g. a database, on startup of an application that has multiple instances</Description>
2424
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2525
<PackageReleaseNotes>
26-
Update of various NuGet packages, especially the DistributedLock packages that fixes some problems
26+
Changed framework to netstandard2.1 to work with any version of .NET
2727
</PackageReleaseNotes>
2828
<Copyright>Copyright (c) 2021 Jon P Smith. Licenced under MIT licence</Copyright>
2929
<PackageTags>Entity Framework Core, ASP.NET Core</PackageTags>

0 commit comments

Comments
 (0)