1 #!/bin/bash 2 3 # Run this from the top directory of nanopb tree. 4 # e.g. user@localhost:~/nanopb$ tools/set_version.sh nanopb-0.1.9-dev 5 # It sets the version number in pb.h and generator/nanopb_generator.py. 6 7 sed -i -e 's/nanopb_version\s*=\s*"[^"]*"/nanopb_version = "'$1'"/' generator/nanopb_generator.py 8 sed -i -e 's/#define\s*NANOPB_VERSION\s*.*/#define NANOPB_VERSION '$1'/' pb.h 9 sed -i -e 's/set(\s*nanopb_VERSION_STRING\s*[^)]*)/set(nanopb_VERSION_STRING '$1')/' CMakeLists.txt 10 11 VERSION_ONLY=$(echo $1 | sed 's/nanopb-//') 12 if [[ $1 != *dev ]] 13 then sed -i -e 's/"version":\s*"[^"]*"/"version": "'$VERSION_ONLY'"/' library.json 14 fi 15