Skip to content

Commit

Permalink
fix: add python and rust typings
Browse files Browse the repository at this point in the history
  • Loading branch information
BelfordZ authored Oct 6, 2020
1 parent eee33a3 commit 01d790f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
["@json-schema-tools/semantic-release-transpiler", {
"outpath": "./",
"schemaLocation": "./schema.json",
"languages": { "ts": true, "go": true }
"languages": { "ts": true, "go": true, "py": true, "rs": true }
}],
"@semantic-release/changelog",
"@semantic-release/release-notes-generator",
["@semantic-release/git", {
"assets": ["*.go", "index.*", "CHANGELOG.md"],
"assets": ["*.go", "*.py", "*.rs", "index.*", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
"@semantic-release/github",
Expand All @@ -21,12 +21,12 @@
["@json-schema-tools/semantic-release-transpiler", {
"outpath": "./",
"schemaLocation": "./schema.json",
"languages": { "ts": true, "go": true }
"languages": { "ts": true, "go": true, "py": true, "rs": true }
}],
"@semantic-release/changelog",
"@semantic-release/npm",
["@semantic-release/git", {
"assets": ["*.go", "index.*", "CHANGELOG.md"],
"assets": ["*.go", "*.py", "*.rs", "index.*", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}]
"@semantic-release/github"
Expand All @@ -35,11 +35,11 @@
["@json-schema-tools/semantic-release-transpiler", {
"outpath": "./",
"schemaLocation": "./schema.json",
"languages": { "ts": true, "go": true }
"languages": { "ts": true, "go": true, "py": true, "rs": true }
}],
"@semantic-release/changelog",
["@semantic-release/git", {
"assets": ["*.go", "index.*", "CHANGELOG.md"],
"assets": ["*.go", "*.py", "*.rs", "index.*", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}]
],
Expand Down

0 comments on commit 01d790f

Please sign in to comment.