Skip to content

Commit

Permalink
Bump version to v0.17.54
Browse files Browse the repository at this point in the history
  • Loading branch information
niko0xdev committed Jan 20, 2024
1 parent 94c9fd6 commit c0f8b4a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ patch:
- $(eval patch=$(shell echo $$(($(patch)+1))))
- @echo "New Version: $(major).$(minor).$(patch)"
- @printf $(major).$(minor).$(patch) > VERSION
- git add VERSION
- cp VERSION graphql/VERSION
- git add --all
- git commit -m "Bump version to $(major).$(minor).$(patch)"
- git tag "$(major).$(minor).$(patch)" -m "Patch version update: $(major).$(minor).$(patch)"
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.17.53
v0.17.54
1 change: 1 addition & 0 deletions graphql/VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v0.17.54
2 changes: 1 addition & 1 deletion graphql/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
)

func GetVersion() string {
content, err := os.ReadFile(string("../../VERSION"))
content, err := os.ReadFile(string("VERSION"))
if err != nil {
log.Fatal(err)
}
Expand Down

0 comments on commit c0f8b4a

Please sign in to comment.