Skip to content

Commit 5c2c88c

Browse files
authored
Merge pull request #3 from pfpack/release/v2.0.0
release/v2.0.0
2 parents f6cf091 + b852357 commit 5c2c88c

File tree

8 files changed

+20
-20
lines changed

8 files changed

+20
-20
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-rc.1.0.0</Version>
20+
<Version>2.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-rc.1.0.0</Version>
20+
<Version>2.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-rc.1.0.0</Version>
20+
<Version>2.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-rc.1.0.0</Version>
20+
<Version>2.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-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" />
35+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0" />
36+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0" />
37+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0" />
3838
</ItemGroup>
3939

4040
</Project>

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-rc.1.0.0</Version>
20+
<Version>2.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-rc.1.0.0" />
35+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0" />
3636
</ItemGroup>
3737

3838
</Project>

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-rc.1.0.0</Version>
20+
<Version>2.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-rc.1.0.0" />
35+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0" />
3636
</ItemGroup>
3737

3838
</Project>

src/core-func-ext-sync/Func.Extensions.Sync/Func.Extensions.Sync.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.Sync is a core library for .NET consisting of extensions for IFunc synchronous functional interface (SAM interface) targeted for use in functional programming.</Description>
1818
<RootNamespace>System</RootNamespace>
1919
<AssemblyName>PrimeFuncPack.Core.Func.Extensions.Sync</AssemblyName>
20-
<Version>2.0.0-rc.1.0.0</Version>
20+
<Version>2.0.0</Version>
2121
</PropertyGroup>
2222

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

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

3838
</Project>

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Description>PrimeFuncPack Core.Func.Extensions is a core library for .NET consisting of extensions for 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.Extensions</AssemblyName>
20-
<Version>2.0.0-rc.1.0.0</Version>
20+
<Version>2.0.0</Version>
2121
</PropertyGroup>
2222

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

3434
<ItemGroup>
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" />
38-
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Async" Version="2.0.0-rc.1.0.0" />
39-
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.AsyncValue" Version="2.0.0-rc.1.0.0" />
40-
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Sync" Version="2.0.0-rc.1.0.0" />
35+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Async" Version="2.0.0" />
36+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.AsyncValue" Version="2.0.0" />
37+
<PackageReference Include="PrimeFuncPack.Core.Func.Abstractions.Sync" Version="2.0.0" />
38+
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Async" Version="2.0.0" />
39+
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.AsyncValue" Version="2.0.0" />
40+
<PackageReference Include="PrimeFuncPack.Core.Func.Extensions.Sync" Version="2.0.0" />
4141
</ItemGroup>
4242

4343
</Project>

0 commit comments

Comments
 (0)