Skip to content

Commit

Permalink
Updated C# client to v1.209.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitmovin OpenApi Bot committed Oct 22, 2024
1 parent 82a2c3e commit ea55e18
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.208.0
Install-Package Bitmovin.Api.Sdk -Version 1.209.0
```

.NET CLI

```shell
dotnet add package Bitmovin.Api.Sdk --version 1.208.0
dotnet add package Bitmovin.Api.Sdk --version 1.209.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.208.0
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.209.0
</code></pre>
<p>.NET CLI</p>
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.208.0
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.209.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.208.0
<pre><code class="lang-shell">Install-Package Bitmovin.Api.Sdk -Version 1.209.0
</code></pre>
<p>.NET CLI</p>
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.208.0
<pre><code class="lang-shell">dotnet add package Bitmovin.Api.Sdk --version 1.209.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": "MZ7vzvr1udTr42f0HUKhQg=="
"hash": "9H9DDdfohRYni3kbVHG2Eg=="
}
},
"is_incremental": false,
Expand All @@ -27,7 +27,7 @@
"output": {
".html": {
"relative_path": "index.html",
"hash": "NN4pirD3/fPC1QuBqfmg3Q=="
"hash": "t5PeY5oUIciw1mRdq+qZIQ=="
}
},
"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.208.0</PackageVersion>
<PackageVersion>1.209.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.208.0"}
{"X-Api-Client-Version", "1.209.0"}
};

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

0 comments on commit ea55e18

Please sign in to comment.