From 1d4163bfab086d941dbbaa9fdfe5d4dfe7d3dbdc Mon Sep 17 00:00:00 2001 From: ektrah Date: Sat, 25 May 2024 20:46:47 +0200 Subject: [PATCH] Update libsodium version to 1.0.20 --- src/Interop/Interop.Version.cs | 4 ++-- src/Sodium.Core/Sodium.Core.csproj | 2 +- test/Sodium.Tests/Sodium.Tests.csproj | 2 +- test/Sodium.Tests/VersionTest.cs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Interop/Interop.Version.cs b/src/Interop/Interop.Version.cs index 2bc5c7d34..ac0b5ce5d 100644 --- a/src/Interop/Interop.Version.cs +++ b/src/Interop/Interop.Version.cs @@ -6,8 +6,8 @@ internal static partial class Interop internal static partial class Libsodium { internal const int SODIUM_LIBRARY_VERSION_MAJOR = 26; - internal const int SODIUM_LIBRARY_VERSION_MINOR = 1; - internal const string SODIUM_VERSION_STRING = "1.0.19"; + internal const int SODIUM_LIBRARY_VERSION_MINOR = 2; + internal const string SODIUM_VERSION_STRING = "1.0.20"; [DllImport(Libraries.Libsodium, CallingConvention = CallingConvention.Cdecl)] internal static extern int sodium_library_version_major(); diff --git a/src/Sodium.Core/Sodium.Core.csproj b/src/Sodium.Core/Sodium.Core.csproj index 07a7a298b..c80916af0 100644 --- a/src/Sodium.Core/Sodium.Core.csproj +++ b/src/Sodium.Core/Sodium.Core.csproj @@ -40,7 +40,7 @@ - + diff --git a/test/Sodium.Tests/Sodium.Tests.csproj b/test/Sodium.Tests/Sodium.Tests.csproj index c21e6c264..8135c0bb1 100644 --- a/test/Sodium.Tests/Sodium.Tests.csproj +++ b/test/Sodium.Tests/Sodium.Tests.csproj @@ -10,7 +10,7 @@ - + diff --git a/test/Sodium.Tests/VersionTest.cs b/test/Sodium.Tests/VersionTest.cs index c5ce7feca..8ad799ce4 100644 --- a/test/Sodium.Tests/VersionTest.cs +++ b/test/Sodium.Tests/VersionTest.cs @@ -11,7 +11,7 @@ public class VersionTest [Test] public void SodiumVersionStringTest() { - const string EXPECTED = "1.0.19"; + const string EXPECTED = "1.0.20"; var actual = SodiumCore.SodiumVersionString(); Assert.AreEqual(EXPECTED, actual); }