Skip to content

Commit

Permalink
Bump version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
yallie committed Jun 16, 2020
1 parent 6443a4c commit 913e754
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/srp/Interfaces/ISrpClient.cs → src/srp/ISrpClient.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace SecureRemotePassword.Interfaces
namespace SecureRemotePassword
{
/// <summary>
/// Client-side code of the SRP-6a protocol.
Expand Down
2 changes: 1 addition & 1 deletion src/srp/Interfaces/ISrpServer.cs → src/srp/ISrpServer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace SecureRemotePassword.Interfaces
namespace SecureRemotePassword
{
/// <summary>
/// Server-side code of the SRP-6a protocol.
Expand Down
1 change: 0 additions & 1 deletion src/srp/SrpClient.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Security;
using SecureRemotePassword.Interfaces;

namespace SecureRemotePassword
{
Expand Down
1 change: 0 additions & 1 deletion src/srp/SrpServer.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Security;
using SecureRemotePassword.Interfaces;

namespace SecureRemotePassword
{
Expand Down
5 changes: 4 additions & 1 deletion src/srp/srp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Description>SRP-6a protocol implementation for .NET Standard 2.0 and .NET Framework 3.5+</Description>
<Copyright>Copyright © 2018-2020 Alexey Yakovlev</Copyright>
<AssemblyTitle>srp</AssemblyTitle>
<Version>1.0.5</Version>
<Version>1.0.6</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>$(Version).0</FileVersion>
<Authors>Alexey Yakovlev</Authors>
Expand All @@ -24,6 +24,9 @@
<RootNamespace>SecureRemotePassword</RootNamespace>
<PackageReleaseNotes>What's new:

v1.0.6:
— Added ISrpClient and ISrpServer interfaces.

v1.0.5:
— Added IsValidSalt and IsValidVerifier utility methods.

Expand Down

0 comments on commit 913e754

Please sign in to comment.