Skip to content

Commit

Permalink
Release v0.11.0
Browse files Browse the repository at this point in the history
Signed-off-by: Maxime Dufour <[email protected]>
  • Loading branch information
outscale-mdr committed Oct 18, 2023
1 parent 4cf77c9 commit 81ab78d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 0.11.0

- Use upstream aws4fetch [#43](https://github.com/outscale/osc-sdk-js/pull/43)

# 0.10.0

- SDK update for Outscale API v1.27.0
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Configuration {
}
const headers = this.configuration.headers;
if (!("User-Agent" in headers)) {
headers["User-Agent"] = "osc-sdk-js/0.10.0";
headers["User-Agent"] = "osc-sdk-js/0.11.0";
}
}
set config(configuration) {
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class Configuration {
}
const headers = this.configuration.headers;
if (!("User-Agent" in headers)) {
headers["User-Agent"] = "osc-sdk-js/0.10.0";
headers["User-Agent"] = "osc-sdk-js/0.11.0";
}
}
set config(configuration) {
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "outscale-api",
"version": "0.10.0",
"version": "0.11.0",
"description": "OpenAPI client for outscale-api",
"author": "Outscale SAS",
"license": "BSD-3-Clause",
Expand Down
2 changes: 1 addition & 1 deletion sdk_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.0
0.11.0
2 changes: 1 addition & 1 deletion src/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Configuration {

const headers = this.configuration.headers
if (!("User-Agent" in headers)) {
headers["User-Agent"] = "osc-sdk-js/0.10.0"
headers["User-Agent"] = "osc-sdk-js/0.11.0"
}
}

Expand Down

0 comments on commit 81ab78d

Please sign in to comment.