Skip to content

Commit

Permalink
Release version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciuschiele committed Feb 8, 2017
1 parent 08f263e commit 1475bbf
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#Changelog

####1.2.0 (2017-02-03)
####1.3.0 (2017-02-08)
- Fix issues.

####1.2.0 (2017-02-03)
- Add IsValid method.

####1.1.0 (2016-06-17)
- Make compatible with .NET Core. Thanks [prajaybasu](http://github.com/prajaybasu).
4 changes: 2 additions & 2 deletions Scrypt.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<tags>scrypt,password,hash,hashing,crypto,cryptographic,cryptography</tags>
</metadata>
<files>
<file src="..\Documents\GitHub\Scrypt\src\Scrypt.Net20\bin\Release\Scrypt.dll" target="lib\net20\Scrypt.dll" />
<file src="..\Documents\GitHub\Scrypt\src\Scrypt.Core\bin\Release\netstandard1.4\Scrypt.dll" target="lib\netstandard1.4\Scrypt.dll" />
<file src="src\Scrypt.Net20\bin\Release\Scrypt.dll" target="lib\net20\Scrypt.dll" />
<file src="src\Scrypt.Core\bin\Release\netstandard1.4\Scrypt.dll" target="lib\netstandard1.4\Scrypt.dll" />
</files>
</package>
2 changes: 1 addition & 1 deletion src/Scrypt.Core/Scrypt.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>netstandard1.4</TargetFramework>
<AssemblyName>Scrypt</AssemblyName>
<AssemblyVersion>1.2.0</AssemblyVersion>
<AssemblyVersion>1.3.0</AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
Expand Down
8 changes: 4 additions & 4 deletions src/Scrypt.Net20/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[assembly: AssemblyDescription("A .NET implementation of scrypt algorithm.")]
[assembly: AssemblyCompany("Vinicius Chiele")]
[assembly: AssemblyProduct("Scrypt.NET")]
[assembly: AssemblyCopyright("Copyright © Vinicius Chiele 2016")]
[assembly: AssemblyVersion("1.2.0")]
[assembly: AssemblyFileVersion("1.2.0")]
[assembly: AssemblyInformationalVersion("1.2.0")]
[assembly: AssemblyCopyright("Copyright © Vinicius Chiele 2017")]
[assembly: AssemblyVersion("1.3.0")]
[assembly: AssemblyFileVersion("1.3.0")]
[assembly: AssemblyInformationalVersion("1.3.0")]

0 comments on commit 1475bbf

Please sign in to comment.