Skip to content

Commit

Permalink
Chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Shadow53 authored and notmgsk committed Oct 10, 2022
1 parent bd02e59 commit 4ab67c7
Show file tree
Hide file tree
Showing 3 changed files with 607 additions and 1,636 deletions.
86 changes: 61 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,72 @@
"version": "0.0.1",
"description": "Encapsulate dependencies needed to use semantic-release",
"dependencies": {
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/gitlab": "^6.0.4",
"@semantic-release/exec": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/gitlab": "^9.4.2",
"conventional-changelog-eslint": "^3.0.8",
"semantic-release": "^17.1.1"
"semantic-release": "^19.0.5"
},
"release": {
"branches": ["main", {"name": "rc", "prerelease": true}],
"branches": [
"main",
{
"name": "rc",
"prerelease": true
}
],
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "eslint",
"releaseRules": [
{"tag": "Breaking", "release": "minor"},
{"tag": "Update", "release": "patch"},
{"tag": "Fix", "release": "patch"},
{"tag": "New", "release": "patch"},
{"tag": "Upgrade", "release": "patch"}
]
}],
["@semantic-release/release-notes-generator", {
"preset": "eslint"
}],
["@semantic-release/exec", {
"prepareCmd": "sh prepare_release.sh ${nextRelease.version}"
}],
[
"@semantic-release/commit-analyzer",
{
"preset": "eslint",
"releaseRules": [
{
"tag": "Breaking",
"release": "minor"
},
{
"tag": "Update",
"release": "patch"
},
{
"tag": "Fix",
"release": "patch"
},
{
"tag": "New",
"release": "patch"
},
{
"tag": "Upgrade",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "eslint"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "sh prepare_release.sh ${nextRelease.version}"
}
],
"@semantic-release/github",
["@semantic-release/git", {
"assets": ["pyproject.toml", "setup.py"],
"message": "Release v${nextRelease.version} [skip ci]"
}]
[
"@semantic-release/git",
{
"assets": [
"pyproject.toml",
"setup.py"
],
"message": "Release v${nextRelease.version} [skip ci]"
}
]
],
"repositoryUrl": "ssh://git@github.com/rigetti/qiskit-rigetti.git"
}
Expand Down
Loading

0 comments on commit 4ab67c7

Please sign in to comment.