Fix repos, filenames, and make sure versions get bump everywhere

Philippe Teuwen
2017-04-04 10:49:01 +02:00
parent ce88eeee53
commit a60a3e8164

@@ -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
```