diff --git a/ReleasingProcess.md b/ReleasingProcess.md index 444d554..b32daf1 100644 --- a/ReleasingProcess.md +++ b/ReleasingProcess.md @@ -1,17 +1,19 @@ http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html * Finalise human-readable changelog! (ChangeLog) - * Report any important code changes (NEWS) + * Report any important code changes (`NEWS.md`) + * Bump version in `CMakeLists.txt` + * Bump version in `configure.ac` * Commit all these files ``` export LIBNFC_RELEASE=1.7.1 -git add NEWS ChangeLog configure.ac CMakeFiles.txt +git add NEWS.md ChangeLog configure.ac CMakeLists.txt git commit -m"Prepare $LIBNFC_RELEASE version" git push ``` * Check tarball distribution: ``` cd /tmp -git clone https://code.google.com/p/libnfc/ +git clone https://github.com/nfc-tools/libnfc.git cd libnfc autoreconf -is ./configure @@ -27,7 +29,7 @@ git push origin libnfc-$LIBNFC_RELEASE * Build tarball archive ``` cd /tmp -git clone https://code.google.com/p/libnfc/ +git clone https://github.com/nfc-tools/libnfc.git cd libnfc sh make_release.sh ```