Skip to content

Commit

Permalink
Include version number in PlatformIO library.json (issue 222)
Browse files Browse the repository at this point in the history
  • Loading branch information
PetteriAimonen committed Nov 19, 2016
1 parent dfa8652 commit 82dd587
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions library.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 2 additions & 0 deletions tools/set_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 82dd587

Please sign in to comment.