Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions duo_api_csharp/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
8 changes: 4 additions & 4 deletions duo_api_csharp/Duo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions examples/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]
4 changes: 2 additions & 2 deletions test/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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")]