Skip to content

Commit

Permalink
fix: update to @octokit/openapi v1.0.3 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
octokitbot committed Dec 1, 2020
1 parent e7d02db commit cd7e79d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cache/openapi-schema.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"openapi": "3.0.3",
"info": {
"version": "1.0.2",
"version": "1.0.3",
"title": "GitHub's official OpenAPI spec + Octokit extension",
"description": "OpenAPI specs from https://github.com/github/rest-api-description with the 'x-octokit' extension required by the Octokit SDKs",
"license": { "name": "MIT", "url": "https://spdx.org/licenses/MIT" },
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"branches": "main"
},
"octokit": {
"openapi-version": "1.0.2"
"openapi-version": "1.0.3"
}
}
2 changes: 1 addition & 1 deletion scripts/update-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ if (!pkg.octokit) {
pkg.octokit = {};
}

pkg.octokit["openapi-version"] = process.env.VERSION;
pkg.octokit["openapi-version"] = process.env.VERSION.replace(/^v/, "");

writeFileSync("package.json", JSON.stringify(pkg, null, 2) + "\n");

0 comments on commit cd7e79d

Please sign in to comment.