1
0
mirror of https://github.com/joaquinjsb/gitea-release-please-action synced 2026-05-12 17:31:37 +02:00

fix(release-please): fix whitespace issues in Rust (#195)

fix(pagination): tagging can use 'updated' releases should use 'created'
This commit is contained in:
Benjamin E. Coe
2021-01-15 16:22:23 -08:00
committed by GitHub
parent 001af28b63
commit b5e370ce70
2 changed files with 11 additions and 11 deletions

20
package-lock.json generated
View File

@@ -151,11 +151,11 @@
"integrity": "sha512-Own8lHWVi5eEfLOnsIzAx16BoRbpkzac3QDUCxIqYMf4bjz+AGpv17UfRn1Va4lVmjwOpvZglpFI3mmxuQ+sIQ==" "integrity": "sha512-Own8lHWVi5eEfLOnsIzAx16BoRbpkzac3QDUCxIqYMf4bjz+AGpv17UfRn1Va4lVmjwOpvZglpFI3mmxuQ+sIQ=="
}, },
"@octokit/plugin-paginate-rest": { "@octokit/plugin-paginate-rest": {
"version": "2.7.0", "version": "2.7.1",
"resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.7.0.tgz", "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-2.7.1.tgz",
"integrity": "sha512-+zARyncLjt9b0FjqPAbJo4ss7HOlBi1nprq+cPlw5vu2+qjy7WvlXhtXFdRHQbSL1Pt+bfAKaLADEkkvg8sP8w==", "integrity": "sha512-dUsxsEIrBqhlQNfXRhMhXOTQi0SSG38+QWcPGO226HFPFJk44vWukegHfMG3496vLv9T2oT7IuAGssGpcUg5bQ==",
"requires": { "requires": {
"@octokit/types": "^6.0.1" "@octokit/types": "^6.3.1"
} }
}, },
"@octokit/plugin-request-log": { "@octokit/plugin-request-log": {
@@ -209,9 +209,9 @@
} }
}, },
"@octokit/types": { "@octokit/types": {
"version": "6.3.0", "version": "6.3.1",
"resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.3.0.tgz", "resolved": "https://registry.npmjs.org/@octokit/types/-/types-6.3.1.tgz",
"integrity": "sha512-OYlk5Di9daD0x948qhMqIgq6XLkm/2w0lgzibDgqrf+LfuAPL12WQaF/N2dO6ipOMW7Xe1jMattZiEd2bRR4Rg==", "integrity": "sha512-SyOaprLWVPS6QhbZY8hF9Oydx/UUnslKq1NyNUr4CN42UEPC3+9AvrYrDm4UvaU1D5u/vVMuSZOicFqOielRXQ==",
"requires": { "requires": {
"@octokit/openapi-types": "^2.3.0", "@octokit/openapi-types": "^2.3.0",
"@types/node": ">= 8" "@types/node": ">= 8"
@@ -3046,9 +3046,9 @@
"dev": true "dev": true
}, },
"release-please": { "release-please": {
"version": "9.3.0-beta.0", "version": "9.3.0-candidate.1",
"resolved": "https://registry.npmjs.org/release-please/-/release-please-9.3.0-beta.0.tgz", "resolved": "https://registry.npmjs.org/release-please/-/release-please-9.3.0-candidate.1.tgz",
"integrity": "sha512-G7fyxTy+VNlW4qwDP9hUoY3P9J7jyUOyyLuYmmvW2Xc/tvsAY6VS865A6UgeDzDND6YFy2ne3DtGOU8y/OgePQ==", "integrity": "sha512-btivtb+BKRX1qeK+4Z9kRTRLt+Jy0tKAJhJIet7p6XzBynx8Qo0tJRmGjvwulMZD30zbXWuMVP9+tyv4XZqBNg==",
"requires": { "requires": {
"@conventional-commits/parser": "^0.4.1", "@conventional-commits/parser": "^0.4.1",
"@iarna/toml": "^2.2.5", "@iarna/toml": "^2.2.5",

View File

@@ -26,7 +26,7 @@
"homepage": "https://github.com/bcoe/release-please-action#readme", "homepage": "https://github.com/bcoe/release-please-action#readme",
"dependencies": { "dependencies": {
"@actions/core": "^1.2.6", "@actions/core": "^1.2.6",
"release-please": "^9.3.0-beta.0" "release-please": "^9.3.0-candidate.1"
}, },
"devDependencies": { "devDependencies": {
"@zeit/ncc": "^0.22.3", "@zeit/ncc": "^0.22.3",