Skip to content

Commit

Permalink
make tag
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraheim committed Aug 4, 2024
1 parent db27e77 commit c862f96
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions DEVGUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,9 @@ if they have some patch that should be integrated. Here are some links:
* update README.md with the result from coverage
* `git push` # if necessary
* wait for github workflows to be okay
* prepare a tmp.changes.txt
* `git tag -F tmp.changes.txt v1.x` to the version in zziplib.spec
* prepare a tmp.changes.txt
* `make tag`
* and `git tag -F tmp.changes.txt v1.x` to the version in zziplib.spec
* `git push --tags`
* update the short description on github
* consider making a github release with the latest news
Expand Down
4 changes: 4 additions & 0 deletions GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ nextversion:
; git --no-pager diff -U0
checkversion versions:
@ git --no-pager diff -U0
tag:
@ ver=`grep "version.*=" setup.cfg | sed -e "s/version *= */v/"` \
; rev=`git rev-parse --short HEAD` \
; echo ": ${GIT} tag $$ver $$rev"

# format ..............................
CLANG_FORMAT=clang-format
Expand Down

0 comments on commit c862f96

Please sign in to comment.