Skip to content

Commit 913e754

Browse files
committed
Bump version number.
1 parent 6443a4c commit 913e754

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace SecureRemotePassword.Interfaces
1+
namespace SecureRemotePassword
22
{
33
/// <summary>
44
/// Client-side code of the SRP-6a protocol.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace SecureRemotePassword.Interfaces
1+
namespace SecureRemotePassword
22
{
33
/// <summary>
44
/// Server-side code of the SRP-6a protocol.

src/srp/SrpClient.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Security;
2-
using SecureRemotePassword.Interfaces;
32

43
namespace SecureRemotePassword
54
{

src/srp/SrpServer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Security;
2-
using SecureRemotePassword.Interfaces;
32

43
namespace SecureRemotePassword
54
{

src/srp/srp.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Description>SRP-6a protocol implementation for .NET Standard 2.0 and .NET Framework 3.5+</Description>
55
<Copyright>Copyright © 2018-2020 Alexey Yakovlev</Copyright>
66
<AssemblyTitle>srp</AssemblyTitle>
7-
<Version>1.0.5</Version>
7+
<Version>1.0.6</Version>
88
<AssemblyVersion>1.0.0.0</AssemblyVersion>
99
<FileVersion>$(Version).0</FileVersion>
1010
<Authors>Alexey Yakovlev</Authors>
@@ -24,6 +24,9 @@
2424
<RootNamespace>SecureRemotePassword</RootNamespace>
2525
<PackageReleaseNotes>What's new:
2626

27+
v1.0.6:
28+
— Added ISrpClient and ISrpServer interfaces.
29+
2730
v1.0.5:
2831
— Added IsValidSalt and IsValidVerifier utility methods.
2932

0 commit comments

Comments
 (0)