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")]