Skip to content

Commit c326f03

Browse files
committed
chore(makefile): add release-patch, release-minor, release-major targets
1 parent 26d13f2 commit c326f03

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@ clean:
2222
rm -rf dist node_modules
2323

2424
release-patch:
25-
npm version patch -m "release: %s"
25+
npm version patch -m "chore: bump version to %s"
2626
git push --follow-tags
2727

2828
release-minor:
29-
npm version minor -m "release: %s"
29+
npm version minor -m "chore: bump version to %s"
3030
git push --follow-tags
3131

3232
release-major:
33-
npm version major -m "release: %s"
33+
npm version major -m "chore: bump version to %s"
3434
git push --follow-tags
3535

3636
publish:

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sql-render",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "Type-safe {{variable}} templating for .sql files with built-in injection protection",
55
"author": "bug3",
66
"repository": {

0 commit comments

Comments
 (0)