Skip to content

Commit

Permalink
No release notes for this build
Browse files Browse the repository at this point in the history
  • Loading branch information
alexread730 committed Jun 10, 2021
1 parent 36af945 commit 6764b13
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 8 deletions.
9 changes: 9 additions & 0 deletions .vs/Intrinio.SDK/xs/UserPrefs.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Properties>
<MonoDevelop.Ide.Workbench />
<MonoDevelop.Ide.DebuggingService.PinnedWatches />
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
<MonoDevelop.Ide.DebuggingService.Breakpoints>
<BreakpointStore />
</MonoDevelop.Ide.DebuggingService.Breakpoints>
<MultiItemStartupConfigurations />
</Properties>
1 change: 1 addition & 0 deletions .vs/Intrinio.SDK/xs/project-cache/Intrinio.SDK-Debug.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Empty file.
Binary file added .vs/Intrinio.SDK/xs/sqlite3/storage.ide
Binary file not shown.
Binary file added .vs/Intrinio.SDK/xs/sqlite3/storage.ide-shm
Binary file not shown.
Binary file added .vs/Intrinio.SDK/xs/sqlite3/storage.ide-wal
Binary file not shown.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ To get an API key, [sign up here](https://intrinio.com/).
Welcome to the Intrinio API! Through our Financial Data Marketplace, we offer a wide selection of financial data feed APIs sourced by our own proprietary processes as well as from many data vendors. For a complete API request / response reference please view the [Intrinio API documentation](https://intrinio.com/documentation/api_v2). If you need additional help in using the API, please visit the [Intrinio website](https://intrinio.com) and click on the chat icon in the lower right corner.

- API version: 2.23.0
- Package version: 5.13.0
- Package version: 5.13.1


<a name="frameworks-supported"></a>
Expand Down
8 changes: 4 additions & 4 deletions src/Intrinio.SDK/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class Configuration : IReadableConfiguration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "5.13.0";
public const string Version = "5.13.1";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down Expand Up @@ -106,7 +106,7 @@ static Configuration()
/// </summary>
public Configuration()
{
UserAgent = "Swagger-Codegen/5.13.0/csharp";
UserAgent = "Swagger-Codegen/5.13.1/csharp";
BasePath = "https://api-v2.intrinio.com";
DefaultHeader = new ConcurrentDictionary<string, string>();
ApiKey = new ConcurrentDictionary<string, string>();
Expand Down Expand Up @@ -182,7 +182,7 @@ public Configuration(
string dateTimeFormat = null,
int timeout = 100000,
bool allowRetries = true,
string userAgent = "Swagger-Codegen/5.13.0/csharp"
string userAgent = "Swagger-Codegen/5.13.1/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: 2.23.0\n";
report += " SDK Package Version: 5.13.0\n";
report += " SDK Package Version: 5.13.1\n";

return report;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Intrinio.SDK/Intrinio.SDK.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Intrinio</title>

<!-- The package version number that is used when resolving dependencies -->
<version>5.13.0</version>
<version>5.13.1</version>

<!-- Authors contain text that appears directly on the gallery -->
<authors>Intrinio</authors>
Expand Down
4 changes: 2 additions & 2 deletions src/Intrinio.SDK/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("5.13.0")]
[assembly: AssemblyFileVersion("5.13.0")]
[assembly: AssemblyVersion("5.13.1")]
[assembly: AssemblyFileVersion("5.13.1")]

0 comments on commit 6764b13

Please sign in to comment.