![gal@spitfire.co.il](/assets/img/avatar_default.png)
7 changed files with 1173 additions and 7 deletions
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash |
||||
|
||||
if [ "$1" = "" ]; then |
||||
echo "Taking version from binary" >&2 |
||||
NEXT_VERSION="$(cargo run --quiet -- --version)" |
||||
else |
||||
NEXT_VERSION="$1" |
||||
fi |
||||
|
||||
echo "Generating changelog for $NEXT_VERSION" |
||||
|
||||
lerna-changelog --from=v1.0.0 "--next-version=$NEXT_VERSION" >CHANGELOG.md |
||||
prettier --write CHANGELOG.md |
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
{ |
||||
"name": "fnm", |
||||
"version": "0.0.0", |
||||
"private": true, |
||||
"repository": "git@github.com:Schniz/fnm.git", |
||||
"author": "Gal Schlezinger <gal@spitfire.co.il>", |
||||
"license": "GPLv3", |
||||
"scripts": { |
||||
"changelog": "./.ci/generate-changelog.sh" |
||||
}, |
||||
"changelog": { |
||||
"repo": "Schniz/fnm", |
||||
"labels": { |
||||
"PR: New Feature": "New Feature 🎉", |
||||
"PR: Bugfix": "Bugfix 🐛", |
||||
"PR: Internal": "Internal 🛠", |
||||
"PR: Documentation": "Documentation 📝" |
||||
} |
||||
}, |
||||
"devDependencies": { |
||||
"lerna-changelog": "^1.0.1", |
||||
"prettier": "^2.1.2" |
||||
} |
||||
} |
Loading…
Reference in new issue