Skip to content

Commit f6cf091

Browse files
authored
Merge pull request #2 from pfpack/release/v2.0.0-rc.1.0.0
release/v2.0.0-rc.1.0.0
2 parents 7360481 + 720def0 commit f6cf091

File tree

13 files changed

+25
-25
lines changed

13 files changed

+25
-25
lines changed

src/core-func-abs-async/Func.Abstractions.Async/Func.Abstractions.Async.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>PrimeFuncPack Core.Func.Abstractions.Async is a core library for .NET consisting of IAsyncFunc asynchronous Task based functional interfaces (SAM interface) targeted for use in functional programming.</Description>
1818
<RootNamespace>System</RootNamespace>
1919
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions.Async</AssemblyName>
20-
<Version>2.0.0-preview.1.0.1</Version>
20+
<Version>2.0.0-rc.1.0.0</Version>
2121
</PropertyGroup>
2222

2323
<ItemGroup>

src/core-func-abs-asyncvalue/Func.Abstractions.AsyncValue/Func.Abstractions.AsyncValue.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>PrimeFuncPack Core.Func.Abstractions.AsyncValue is a core library for .NET consisting of IAsyncValueFunc asynchronous ValueTask based functional interfaces (SAM interface) targeted for use in functional programming.</Description>
1818
<RootNamespace>System</RootNamespace>
1919
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions.AsyncValue</AssemblyName>
20-
<Version>2.0.0-preview.1.0.1</Version>
20+
<Version>2.0.0-rc.1.0.0</Version>
2121
</PropertyGroup>
2222

2323
<ItemGroup>

src/core-func-abs-sync/Func.Abstractions.Sync/Func.Abstractions.Sync.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>PrimeFuncPack Core.Func.Abstractions.Sync is a core library for .NET consisting of IFunc synchronous functional interfaces (SAM interface) targeted for use in functional programming.</Description>
1818
<RootNamespace>System</RootNamespace>
1919
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions.Sync</AssemblyName>
20-
<Version>2.0.0-preview.1.0.1</Version>
20+
<Version>2.0.0-rc.1.0.0</Version>
2121
</PropertyGroup>
2222

2323
<ItemGroup>

src/core-func-abs/Func.Abstractions/Func.Abstractions.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>PrimeFuncPack Core.Func.Abstractions is a core library for .NET consisting of functional interfaces (SAM interfaces) targeted for use in functional programming - IAsyncFunc/IAsyncValueFunc and IFunc, both asynchronous (Task and ValueTask based) and synchronous.</Description>
1818
<RootNamespace>System</RootNamespace>
1919
<AssemblyName>PrimeFuncPack.Core.Func.Abstractions</AssemblyName>
20-
<Version>2.0.0-preview.1.0.1</Version>
20+
<Version>2.0.0-rc.1.0.0</Version>
2121
</PropertyGroup>
2222

2323
<ItemGroup>
@@ -32,9 +32,9 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0-preview.1.0.1" />
36-
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0-preview.1.0.1" />
37-
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0-preview.1.0.1" />
35+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0-rc.1.0.0" />
36+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0-rc.1.0.0" />
37+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0-rc.1.0.0" />
3838
</ItemGroup>
3939

4040
</Project>

src/core-func-ext-async/Func.Extensions.Async.Tests.DefCancellation/Func.Extensions.Async.Tests.DefCancellation.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
18-
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="2.0.6" />
18+
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="3.0.0" />
1919
<PackageReference Include="xunit" Version="2.4.1" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/core-func-ext-async/Func.Extensions.Async.Tests.Primary/Func.Extensions.Async.Tests.Primary.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
18-
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="2.0.6" />
18+
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="3.0.0" />
1919
<PackageReference Include="xunit" Version="2.4.1" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/core-func-ext-async/Func.Extensions.Async/Func.Extensions.Async.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>PrimeFuncPack Core.Func.Extensions.Async is a core library for .NET consisting of extensions for IAsyncFunc asynchronous Task based functional interface (SAM interface) targeted for use in functional programming.</Description>
1818
<RootNamespace>System</RootNamespace>
1919
<AssemblyName>PrimeFuncPack.Core.Func.Extensions.Async</AssemblyName>
20-
<Version>2.0.0-preview.1.0.1</Version>
20+
<Version>2.0.0-rc.1.0.0</Version>
2121
</PropertyGroup>
2222

2323
<ItemGroup>
@@ -32,7 +32,7 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0-preview.1.0.1" />
35+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0-rc.1.0.0" />
3636
</ItemGroup>
3737

3838
</Project>

src/core-func-ext-asyncvalue/Func.Extensions.AsyncValue.Tests.DefCancellation/Func.Extensions.AsyncValue.Tests.DefCancellation.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
18-
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="2.0.6" />
18+
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="3.0.0" />
1919
<PackageReference Include="xunit" Version="2.4.1" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/core-func-ext-asyncvalue/Func.Extensions.AsyncValue.Tests.Primary/Func.Extensions.AsyncValue.Tests.Primary.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<ItemGroup>
1717
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.0.0" />
18-
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="2.0.6" />
18+
<PackageReference Include="PrimeFuncPack.UnitTest.Data" Version="3.0.0" />
1919
<PackageReference Include="xunit" Version="2.4.1" />
2020
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/core-func-ext-asyncvalue/Func.Extensions.AsyncValue/Func.Extensions.AsyncValue.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>PrimeFuncPack Core.Func.Extensions.AsyncValue is a core library for .NET consisting of extensions for IAsyncValueFunc asynchronous ValueTask based functional interface (SAM interface) targeted for use in functional programming.</Description>
1818
<RootNamespace>System</RootNamespace>
1919
<AssemblyName>PrimeFuncPack.Core.Func.Extensions.AsyncValue</AssemblyName>
20-
<Version>2.0.0-preview.1.0.1</Version>
20+
<Version>2.0.0-rc.1.0.0</Version>
2121
</PropertyGroup>
2222

2323
<ItemGroup>
@@ -32,7 +32,7 @@
3232
</ItemGroup>
3333

3434
<ItemGroup>
35-
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0-preview.1.0.1" />
35+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0-rc.1.0.0" />
3636
</ItemGroup>
3737

3838
</Project>

0 commit comments

Comments
 (0)