Skip to content

Commit 758a63f

Browse files
committed
updating source code package
1 parent 299d324 commit 758a63f

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

BuildScripts/NuGetPublish.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ set PACKAGES=..\.dist\packages
44
set SOURCE=https://api.nuget.org/v3/index.json
55
set /p APIKEY=<"..\ApiKey.txt"
66

7-
rem dotnet nuget push "%PACKAGES%\ImTools.dll.2.0.0.nupkg" -k %APIKEY% -s %SOURCE%
8-
rem dotnet nuget push "%PACKAGES%\ImTools.2.0.0.nupkg" -k %APIKEY% -s %SOURCE%
7+
dotnet nuget push "%PACKAGES%\ImTools.dll.3.1.0.nupkg" -k %APIKEY% -s %SOURCE%
8+
dotnet nuget push "%PACKAGES%\ImTools.3.1.0.nupkg" -k %APIKEY% -s %SOURCE%
99

1010
echo:
1111
echo:Publishing completed.

nuspecs/ImTools.nuspec

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata minClientVersion="3.3.0">
44
<id>ImTools</id>
5-
<version>3.0.0</version>
5+
<version>3.1.0</version>
66
<authors>Maksim Volkau</authors>
77
<copyright>Copyright © 2016-2021 Maksim Volkau</copyright>
88
<projectUrl>https://github.com/dadhi/ImTools</projectUrl>
@@ -17,6 +17,14 @@
1717
<tags>FP Performance Simple Functional Immutable Persistent Map Avl 2-3Tree Self Balanced Tree Dictionary Thread-safe Functional Atomic Ref Algebraic Discriminated Union SumType</tags>
1818
<releaseNotes>
1919
<![CDATA[
20+
## v3.1.0 Minor feature and bug-fix release
21+
22+
- fixed: #44 the Im(Hash)Map.Entry methods should return the entry type but now return the map type
23+
- fixed: Excessive memory consumption and potential issue in ArrayTools.Match for 2 items
24+
- added: More efficient Im(Hash)Map ToArray() method
25+
- added: ImHashMap ForEach with the struct IHandler
26+
- added: ArrayTools.AppendNonEmpty and PrependToNonEmpty methods
27+
2028
## v3.0.0 Major feature release
2129
2230
- Minimizing the target frameworks to the net45 and netstandard2.0

0 commit comments

Comments
 (0)