From fb3ad74df81df95926cc4b0dd764b9f6eaa4802d Mon Sep 17 00:00:00 2001 From: Aaron McConnell Date: Wed, 12 Jun 2024 10:16:32 -0400 Subject: [PATCH] Reconcile version number with project file (#42) --- DuoUniversal/Client.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DuoUniversal/Client.cs b/DuoUniversal/Client.cs index 6acec8f..3f8212b 100644 --- a/DuoUniversal/Client.cs +++ b/DuoUniversal/Client.cs @@ -19,7 +19,7 @@ namespace DuoUniversal public class Client { public const string DUO_UNIVERSAL_CSHARP = "duo_universal_csharp"; - public const string DUO_UNIVERSAL_CSHARP_VERSION = "1.2.2"; + public const string DUO_UNIVERSAL_CSHARP_VERSION = "1.2.5"; internal const int CLIENT_ID_LENGTH = 20; internal const int CLIENT_SECRET_LENGTH = 40; @@ -572,4 +572,4 @@ private bool HasCustomAppInfo() return !string.IsNullOrWhiteSpace(_customAppName) && !string.IsNullOrWhiteSpace(_customAppVersion); } } -} \ No newline at end of file +}