Skip to content

Commit

Permalink
fix minor release quirks
Browse files Browse the repository at this point in the history
better SAFEC_API_VERSION,
update doc/libc-overview.md to gh-pages
  • Loading branch information
rurban committed Mar 8, 2024
1 parent c3a1089 commit 81429ac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -610,13 +610,15 @@ endif
gh-pages: docs
echo ensure ./configure --enable-unsafe
ls doc/man/man3/tmpnam_s.3
cp -f doc/libc-overview.md doc/libc-overview.md.master
git checkout gh-pages
-mv doc/libc-overview.md.master doc/libc-overview.md
rm -rf doc/man
rm -rf doc/safec-$(SAFEC_API_VERSION)
mkdir doc/safec-$(SAFEC_API_VERSION)
mv doc/html/* doc/safec-$(SAFEC_API_VERSION)/
rm -rf doc/html
git add doc/safec-$(SAFEC_API_VERSION)
git add doc/libc-overview.md doc/safec-$(SAFEC_API_VERSION)
release: docs distcheck
git branch |grep '^* master'
git tag -f v`date +%d%m%Y`
Expand Down
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,8 @@ AC_SUBST([TARBALL_VERSION_FILE])
# library version information":
# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
AC_SUBST([SAFEC_SO_VERSION], [3:8:0])
AC_SUBST([SAFEC_API_VERSION], [3.8.0])
# no patch version here
AC_SUBST([SAFEC_API_VERSION], [3.8])

AC_MSG_CHECKING([package version])
AC_MSG_RESULT($PACKAGE_VERSION)
Expand Down

0 comments on commit 81429ac

Please sign in to comment.