diff --git a/.gitignore b/.gitignore index 85b7f11..17667a8 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ ## files generated by popular Visual Studio add-ons. # User-specific files +.temp .idea/ .temp *.suo diff --git a/src/srp/srp.csproj b/src/srp/srp.csproj index 0906d60..e964ad5 100644 --- a/src/srp/srp.csproj +++ b/src/srp/srp.csproj @@ -2,9 +2,9 @@ SRP-6a protocol implementation for .NET Standard 2.0 and .NET Framework 3.5+ - Copyright © 2018-2020 Alexey Yakovlev + Copyright © 2018-2022 Alexey Yakovlev srp - 1.0.6 + 1.0.7 1.0.0.0 $(Version).0 Alexey Yakovlev @@ -24,6 +24,9 @@ SecureRemotePassword What's new: + v1.0.7: + — Added support for legacy SRP-3 and SRP-6 protocols. + v1.0.6: — Added ISrpClient and ISrpServer interfaces.