Skip to content

Commit

Permalink
Bump to 2.0.0, since we have breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Jackson committed Dec 5, 2018
1 parent 2a17e13 commit c8ec9cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions src/SignRequest/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "1.1.0";
public const string Version = "2.0.0";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -114,8 +114,8 @@ static Configuration()
/// </summary>
public Configuration()
{
UserAgent = "Swagger-Codegen/1.1.0/csharp";
BasePath = "https://signrequest.com/api/v1";
UserAgent = "Swagger-Codegen/2.0.0/csharp";
DefaultHeader = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
ApiKeyPrefix = new ConcurrentDictionary<string, string>();
Expand Down Expand Up @@ -187,7 +187,7 @@ public Configuration(
string tempFolderPath = null,
string dateTimeFormat = null,
int timeout = 100000,
string userAgent = "Swagger-Codegen/1.1.0/csharp"
string userAgent = "Swagger-Codegen/2.0.0/csharp"
// ReSharper restore UnusedParameter.Local
)
{
Expand Down Expand Up @@ -422,7 +422,7 @@ public static String ToDebugReport()
report += " OS: " + System.Environment.OSVersion + "\n";
report += " .NET Framework Version: " + System.Environment.Version + "\n";
report += " Version of the API: v1\n";
report += " SDK Package Version: 1.1.0\n";
report += " SDK Package Version: 2.0.0\n";

return report;
}
Expand Down
4 changes: 2 additions & 2 deletions src/SignRequest/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,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.1.0")]
[assembly: AssemblyFileVersion("1.1.0")]
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0")]

0 comments on commit c8ec9cc

Please sign in to comment.