Skip to content

Commit

Permalink
Updated C# client to v1.201.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitmovin OpenApi Bot committed Aug 6, 2024
1 parent 98158e7 commit bcae4ec
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@ Add this dependency to your project:

Package Manager
```shell
Install-Package Bitmovin.Api.Sdk -Version 1.200.0
Install-Package Bitmovin.Api.Sdk -Version 1.201.0
```

.NET CLI

```shell
dotnet add package Bitmovin.Api.Sdk --version 1.200.0
dotnet add package Bitmovin.Api.Sdk --version 1.201.0
```

## Initialization
Expand Down
4 changes: 2 additions & 2 deletions docs/README.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ <h2 id="installation">Installation</h2>
<h3 id="nuget">Nuget</h3>
<p>Add this dependency to your project:</p>
<p>Package Manager</p>
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.200.0
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.201.0
</code></pre>
<p>.NET CLI</p>
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.200.0
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.201.0
</code></pre>
<h2 id="initialization">Initialization</h2>
<pre><code class="lang-csharp"> using Bitmovin.Api;
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ <h2 id="installation">Installation</h2>
<h3 id="nuget">Nuget</h3>
<p>Add this dependency to your project:</p>
<p>Package Manager</p>
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.200.0
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.201.0
</code></pre>
<p>.NET CLI</p>
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.200.0
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.201.0
</code></pre>
<h2 id="initialization">Initialization</h2>
<pre><code class="lang-csharp"> using Bitmovin.Api;
Expand Down
4 changes: 2 additions & 2 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"output": {
".html": {
"relative_path": "README.html",
"hash": "X0jk6B6ylkSDMEDskUt/WA=="
"hash": "ZvPYNRJfV3IUZEaF5eRwkg=="
}
},
"is_incremental": false,
Expand All @@ -27,7 +27,7 @@
"output": {
".html": {
"relative_path": "index.html",
"hash": "tis/lJu5lXPhqjS1pm+AKQ=="
"hash": "TUaWr/uVfORFE/TPc2bHdA=="
}
},
"is_incremental": false,
Expand Down
2 changes: 1 addition & 1 deletion src/Bitmovin.Api.Sdk/Bitmovin.Api.Sdk.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net461;netstandard2.0</TargetFrameworks>
<PackageVersion>1.200.0</PackageVersion>
<PackageVersion>1.201.0</PackageVersion>
<Title>Bitmovin C# API Client</Title>
<Authors>Bitmovin Inc</Authors>
<Description>C#-Client which enables you to seamlessly integrate the Bitmovin API into your projects. Using this API client requires an active account.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/Bitmovin.Api.Sdk/Common/BitmovinApiClientFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ protected virtual Dictionary<string, string> GetHeaders()
var headers = new Dictionary<string, string>
{
{"X-Api-Client", "bitmovin-api-sdk-dotnet"},
{"X-Api-Client-Version", "1.200.0"}
{"X-Api-Client-Version", "1.201.0"}
};

if (!string.IsNullOrEmpty(ApiKey))
Expand Down

0 comments on commit bcae4ec

Please sign in to comment.