Skip to content

Commit

Permalink
feat(CHANGELOG)
Browse files Browse the repository at this point in the history
  • Loading branch information
percebus committed Jul 17, 2024
1 parent 2c41695 commit 5608154
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
22 changes: 21 additions & 1 deletion .releaserc.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,30 @@ export default {
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
changelogFile: "CHANGELOG.md",
},
],
[
"@semantic-release/npm",
{
npmPublish: false,
tarballDir: "dist",
},
],
[
"@semantic-release/git",
{
assets: ["package.json"],
changelogFile: "CHANGELOG.md",
},
],
[
"@semantic-release/github",
{
assets: [{ path: "src/*.py", label: "Python App" }],
assets: "dist/*.tgz",
},
],
],
Expand Down
6 changes: 4 additions & 2 deletions package-lock.json

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

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "algorithmic-excercises",
"version": "0.1.0",
"version": "1.1.0",
"description": "Algorithmic excercises",
"main": "FIXME",
"scripts": {
Expand Down Expand Up @@ -47,6 +47,7 @@
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.7",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"dockerlint": "^0.3.9",
"prettier": "^3.1.0",
Expand Down

0 comments on commit 5608154

Please sign in to comment.