Skip to content

Commit a8f2546

Browse files
committed
updated nuspec for 0.10.0 version
1 parent 50b5600 commit a8f2546

File tree

4 files changed

+796
-560
lines changed

4 files changed

+796
-560
lines changed

Blazer.Net/Blazer.Net.nuspec

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,31 @@
33
<metadata>
44
<id>Blazer.Net</id>
55
<title>Blazer.Net</title>
6-
<version>0.10.0-beta1</version>
6+
<version>0.10.0</version>
77
<authors>force</authors>
88
<owners>force</owners>
99
<licenseUrl>https://github.com/force-net/blazer/blob/develop/LICENSE</licenseUrl>
1010
<projectUrl>https://github.com/force-net/blazer</projectUrl>
11-
<!--iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl-->
11+
<iconUrl>http://files.force-net.com/blazer-nuget-ico.png</iconUrl>
1212
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1313
<summary>Blazer is high-performance, low compression archiver.</summary>
1414
<description>
15-
Blazer is high-performance, low compression archiver.
16-
Main usage to work with streams, but can be used as general archiver or for reducing application size by compressing it resources.
17-
Compression rate is comparable (slightly better) to LZ4 and Snappy and compression speed is really faster than GZip.
18-
Blazer contains all standard features for archives, but also it is possible to use control commands in stream, encrypt archive, use it as simple (but fast) crc32c calulator, perform patterned compresstion and many others features.
15+
Blazer is high-performance, low compression archiver.
16+
Main usage to work with streams, but can be used as general archiver or for reducing application size by compressing it resources.
17+
Compression rate is comparable (slightly better) to LZ4 and Snappy and compression speed is really faster than GZip.
18+
Blazer contains all standard features for archives, but also it is possible to use control commands in stream, encrypt archive, use it as simple (but fast) crc32c calulator, perform patterned compresstion and many others features.
1919

20-
See project site for detailed information.
20+
See project site for detailed information.
2121
</description>
2222
<releaseNotes>
23-
- Added support to .NET Core
24-
- Changed padding mode to full encryption (due lack of padding support for .NET Core)
23+
- Stable .NET Core version
24+
- Padding mode was implemented manually to relate normal .NET version
25+
- Changed block encryption to avoid attacks with packet repeating
26+
- Added PasswordRaw and CommentRaw (binary data in this fields)
27+
- Some fixes and improvements
28+
- Added data array helper (for compressing/decompressing resources in byte array way)
29+
- Improved software Crc32C
30+
- Added option to skip real decompression (useful for file lists)
2531
</releaseNotes>
2632
<copyright>Copyright by Force 2016-2017</copyright>
2733
<tags>.NET fast compression archive crc32c archiver</tags>

Blazer.Net/project.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.10.0-beta1",
2+
"version": "0.10.0",
33
"frameworks": {
44
"net40": {
55
},
@@ -8,7 +8,7 @@
88
"define": ["NETCORE"]
99
},
1010
"dependencies": {
11-
"NETStandard.Library": "1.3.0"
11+
"NETStandard.Library": "1.6.1"
1212
}
1313
}
1414
},

0 commit comments

Comments
 (0)