From 09d98906a67f021b06a7be63ec9737ce1ee8f780 Mon Sep 17 00:00:00 2001 From: Denitsa Hristova Date: Tue, 22 Apr 2025 17:55:57 +0300 Subject: [PATCH] version bump --- duo_api_csharp/AssemblyInfo.cs | 4 ++-- duo_api_csharp/Duo.cs | 8 ++++---- examples/Properties/AssemblyInfo.cs | 4 ++-- test/Properties/AssemblyInfo.cs | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/duo_api_csharp/AssemblyInfo.cs b/duo_api_csharp/AssemblyInfo.cs index 75fbbb2..3585bfa 100644 --- a/duo_api_csharp/AssemblyInfo.cs +++ b/duo_api_csharp/AssemblyInfo.cs @@ -29,8 +29,8 @@ // Build Number // Revision // -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.1.0")] +[assembly: AssemblyFileVersion("1.1.0")] // Allow tests to access internal methods for easier testing [assembly: InternalsVisibleTo("DuoApiTest")] diff --git a/duo_api_csharp/Duo.cs b/duo_api_csharp/Duo.cs index d047fec..7aaba1e 100644 --- a/duo_api_csharp/Duo.cs +++ b/duo_api_csharp/Duo.cs @@ -17,14 +17,14 @@ using System.Runtime.InteropServices; using System.Security.Cryptography.X509Certificates; using System.Net.Security; -using System.Text.Json; -using Duo.Extensions; - +using System.Text.Json; +using Duo.Extensions; + namespace Duo { public class DuoApi { - public string DEFAULT_AGENT = "DuoAPICSharp/1.0"; + public string DEFAULT_AGENT = "DuoAPICSharp/1.1.0"; private const int INITIAL_BACKOFF_MS = 1000; private const int MAX_BACKOFF_MS = 32000; diff --git a/examples/Properties/AssemblyInfo.cs b/examples/Properties/AssemblyInfo.cs index 6a556c3..77d5fed 100644 --- a/examples/Properties/AssemblyInfo.cs +++ b/examples/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.1.0")] +[assembly: AssemblyFileVersion("1.1.0")] diff --git a/test/Properties/AssemblyInfo.cs b/test/Properties/AssemblyInfo.cs index 80f68e1..490f414 100644 --- a/test/Properties/AssemblyInfo.cs +++ b/test/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.0.0")] -[assembly: AssemblyFileVersion("1.0.0.0")] +[assembly: AssemblyVersion("1.1.0")] +[assembly: AssemblyFileVersion("1.1.0")]