Skip to content

Commit a5e58e2

Browse files
authored
version bump (#43)
1 parent 906af08 commit a5e58e2

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

duo_api_csharp/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("1.0.0.0")]
33-
[assembly: AssemblyFileVersion("1.0.0.0")]
32+
[assembly: AssemblyVersion("1.1.0")]
33+
[assembly: AssemblyFileVersion("1.1.0")]
3434

3535
// Allow tests to access internal methods for easier testing
3636
[assembly: InternalsVisibleTo("DuoApiTest")]

duo_api_csharp/Duo.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@
1717
using System.Runtime.InteropServices;
1818
using System.Security.Cryptography.X509Certificates;
1919
using System.Net.Security;
20-
using System.Text.Json;
21-
using Duo.Extensions;
22-
20+
using System.Text.Json;
21+
using Duo.Extensions;
22+
2323
namespace Duo
2424
{
2525
public class DuoApi
2626
{
27-
public string DEFAULT_AGENT = "DuoAPICSharp/1.0";
27+
public string DEFAULT_AGENT = "DuoAPICSharp/1.1.0";
2828

2929
private const int INITIAL_BACKOFF_MS = 1000;
3030
private const int MAX_BACKOFF_MS = 32000;

examples/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.1.0")]
36+
[assembly: AssemblyFileVersion("1.1.0")]

test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.1.0")]
36+
[assembly: AssemblyFileVersion("1.1.0")]

0 commit comments

Comments
 (0)