Skip to content

Commit

Permalink
add new version
Browse files Browse the repository at this point in the history
  • Loading branch information
niko0xdev committed Jan 20, 2024
1 parent e9ef439 commit 2174a27
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ patch:
- @printf $(major).$(minor).$(patch) > VERSION
- git tag "$(major).$(minor).$(patch)" -m "Patch version update: $(major).$(minor).$(patch)"
- git push origin $(major).$(minor).$(patch)
- git add VERSION
- git commit -m "Bump version to $(major).$(minor).$(patch)"
- git push

minor:
- @echo "BUMPING MINOR"
Expand All @@ -21,6 +24,9 @@ minor:
- @printf $(major).$(minor).0 > VERSION
- git tag "$(major).$(minor).$(patch)" -m "Minor version update: $(major).$(minor).$(patch)"
- git push origin $(major).$(minor).$(patch)
- git add VERSION
- git commit -m "Bump version to $(major).$(minor).$(patch)"
- git push

major:
- @echo "BUMPING MAJOR"
Expand All @@ -29,4 +35,7 @@ major:
- @echo "New Version: $(major).0.0"
- @printf $(major).0.0 > VERSION
- git tag "$(major).$(minor).$(patch)" -m "Major version update: $(major).$(minor).$(patch)"
- git push origin $(major).$(minor).$(patch)
- git push origin $(major).$(minor).$(patch)
- git add VERSION
- git commit -m "Bump version to $(major).$(minor).$(patch)"
- git push
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.17.46
v0.17.47

0 comments on commit 2174a27

Please sign in to comment.