summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2016-11-19 07:36:21 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2016-11-19 07:36:21 +0200
commit82dd587c7b8d10150ab6683733863e2b7e34a428 (patch)
tree287f7a60d25b92c8d5fa50cbc176f983dc9cefa7
parentdfa8652db405b08292f3238e05f7592be19fe392 (diff)
Include version number in PlatformIO library.json (issue 222)
-rw-r--r--library.json1
-rwxr-xr-xtools/set_version.sh2
2 files changed, 3 insertions, 0 deletions
diff --git a/library.json b/library.json
index 30a56c94..1a0b07c1 100644
--- a/library.json
+++ b/library.json
@@ -1,5 +1,6 @@
{
"name": "Nanopb",
+ "version": "0.3.8-dev",
"keywords": "protocol buffers, protobuf, google",
"description": "Nanopb is a plain-C implementation of Google's Protocol Buffers data format. It is targeted at 32 bit microcontrollers, but is also fit for other embedded systems with tight (2-10 kB ROM, <1 kB RAM) memory constraints.",
"repository": {
diff --git a/tools/set_version.sh b/tools/set_version.sh
index f989308c..729ca0d7 100755
--- a/tools/set_version.sh
+++ b/tools/set_version.sh
@@ -8,4 +8,6 @@ sed -i -e 's/nanopb_version\s*=\s*"[^"]*"/nanopb_version = "'$1'"/' generator/na
sed -i -e 's/#define\s*NANOPB_VERSION\s*.*/#define NANOPB_VERSION '$1'/' pb.h
sed -i -e 's/set(\s*nanopb_VERSION_STRING\s*[^)]*)/set(nanopb_VERSION_STRING '$1')/' CMakeLists.txt
+VERSION_ONLY=$(echo $1 | sed 's/nanopb-//')
+sed -i -e 's/"version":\s*"[^"]*"/"version": "'$VERSION_ONLY'"/' library.json