aboutsummaryrefslogtreecommitdiff
path: root/tools/set_version.sh
blob: e15a859d8a16ce490569c2ec2d5f9840b7ea396a (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

# Run this from the top directory of nanopb tree.
# e.g. user@localhost:~/nanopb$ tools/set_version.sh nanopb-0.1.9-dev
# It sets the version number in pb.h and generator/nanopb_generator.py.

sed -i -e 's/nanopb_version\s*=\s*"[^"]*"/nanopb_version = "'$1'"/' generator/nanopb_generator.py
sed -i -e 's/#define\s*NANOPB_VERSION\s*.*/#define NANOPB_VERSION '$1'/' pb.h