From f32fa0521a9e8ea811e469bee5ff6e74a90d32be Mon Sep 17 00:00:00 2001 From: Christian Hermann Date: Thu, 9 Oct 2014 20:29:16 +0200 Subject: [PATCH] Nuget 0.3.0 - Updates libsodium-net to 0.6.0 - Updates README - Updates nuspec --- README.md | 2 +- StreamCryptor.nuspec | 8 +++++--- StreamCryptor/Properties/AssemblyInfo.cs | 4 ++-- StreamCryptor/StreamCryptor.csproj | 2 +- StreamCryptor/packages.config | 2 +- Tests/Tests.csproj | 2 +- Tests/packages.config | 2 +- 7 files changed, 12 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 7f253a3..f06a3f7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# StreamCryptor [![Build status](https://ci.appveyor.com/api/projects/status/73fb5hecxx9xjyip)](https://ci.appveyor.com/project/bitbeans/streamcryptor) [![Build Status](https://travis-ci.org/bitbeans/StreamCryptor.svg?branch=master)](https://travis-ci.org/bitbeans/StreamCryptor) +# StreamCryptor [![Build status](https://img.shields.io/appveyor/ci/bitbeans/StreamCryptor.svg?style=flat-square)](https://ci.appveyor.com/project/bitbeans/streamcryptor) [![Build Status](https://img.shields.io/travis/bitbeans/StreamCryptor.svg?style=flat-square)](https://travis-ci.org/bitbeans/StreamCryptor) [![NuGet Version](https://img.shields.io/nuget/v/StreamCryptor.svg?style=flat-square)](https://www.nuget.org/packages/StreamCryptor/) [![License](http://img.shields.io/badge/license-MIT-green.svg?style=flat-square)](https://github.com/bitbeans/StreamCryptor/blob/master/LICENSE) You can use StreamCryptor to encrypt and decrypt files without size limit and the need to load every file completely into memory. StreamCryptor uses `FileStream` to read and write files in chunks, there is also an asynchronous implementations for progress reporting available: [example](../master/examples/DemoAsync.md). diff --git a/StreamCryptor.nuspec b/StreamCryptor.nuspec index adef784..98a74ae 100644 --- a/StreamCryptor.nuspec +++ b/StreamCryptor.nuspec @@ -2,7 +2,7 @@ StreamCryptor - 0.2.5-beta + 0.3.0 Christian Hermann Christian Hermann https://raw.githubusercontent.com/bitbeans/StreamCryptor/master/LICENSE @@ -21,7 +21,9 @@ All cryptographic operations are performed via libsodium-net (and thus libsodium For more details visit the project site. Stream encryption & decryption with libsodium and protobuf - 0.2.5 + 0.3.0 +* Updated libsodium to 0.6.0 (stable) +0.2.5 * Updated libsodium to 0.6.0-beta3 * Fixes PInvokeStackImbalance 0.2.4 @@ -50,7 +52,7 @@ For more details visit the project site. - + diff --git a/StreamCryptor/Properties/AssemblyInfo.cs b/StreamCryptor/Properties/AssemblyInfo.cs index 8a08ede..27ac54c 100644 --- a/StreamCryptor/Properties/AssemblyInfo.cs +++ b/StreamCryptor/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern // übernehmen, indem Sie "*" eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.2.5.0")] -[assembly: AssemblyFileVersion("0.2.5.0")] +[assembly: AssemblyVersion("0.3.0.0")] +[assembly: AssemblyFileVersion("0.3.0.0")] diff --git a/StreamCryptor/StreamCryptor.csproj b/StreamCryptor/StreamCryptor.csproj index 8ebed33..069edf6 100644 --- a/StreamCryptor/StreamCryptor.csproj +++ b/StreamCryptor/StreamCryptor.csproj @@ -46,7 +46,7 @@ False - ..\packages\libsodium-net.0.6.0-beta3\lib\Net40\Sodium.dll + ..\packages\libsodium-net.0.6.0\lib\Net40\Sodium.dll diff --git a/StreamCryptor/packages.config b/StreamCryptor/packages.config index b4592cf..2d2f0f7 100644 --- a/StreamCryptor/packages.config +++ b/StreamCryptor/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file diff --git a/Tests/Tests.csproj b/Tests/Tests.csproj index 653f9d6..6fc11d9 100644 --- a/Tests/Tests.csproj +++ b/Tests/Tests.csproj @@ -38,7 +38,7 @@ False - ..\packages\libsodium-net.0.6.0-beta1\lib\Net40\Sodium.dll + ..\packages\libsodium-net.0.6.0\lib\Net40\Sodium.dll diff --git a/Tests/packages.config b/Tests/packages.config index 69d70e4..5b9b390 100644 --- a/Tests/packages.config +++ b/Tests/packages.config @@ -1,6 +1,6 @@  - + \ No newline at end of file