diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-01-01 11:11:19 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2014-01-01 11:20:54 +0200 |
commit | 906c8283b5995eb7b27f4958a6a6502ae0deea07 (patch) | |
tree | 107c4e73c8cbd2e5c61d63782788f0c3a8001897 | |
parent | 4546bb92dc332ebbfb05a7517028f967b0657725 (diff) |
Publishing nanopb-0.2.5
-rw-r--r-- | CHANGELOG.txt | 7 | ||||
-rwxr-xr-x | generator/nanopb_generator.py | 2 | ||||
-rw-r--r-- | pb.h | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 94f0c797..f0c97c65 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,3 +1,10 @@ +nanopb-0.2.5 (2014-01-01) + Fix a bug with encoding negative values in int32 fields (issue 97) + Create binary packages of the generator + dependencies (issue 47) + Add support for pointer-type fields to the encoder (part of issue 80) + Fixed path in FindNanopb.cmake (issue 94) + Improved tests + nanopb-0.2.4 (2013-11-07) Remove the deprecated NANOPB_INTERNALS functions from public API. Document the security model. diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index 6ccb96f9..475e78ae 100755 --- a/generator/nanopb_generator.py +++ b/generator/nanopb_generator.py @@ -1,7 +1,7 @@ #!/usr/bin/python '''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.''' -nanopb_version = "nanopb-0.2.5-dev" +nanopb_version = "nanopb-0.2.5" import sys @@ -43,7 +43,7 @@ /* Version of the nanopb library. Just in case you want to check it in * your own program. */ -#define NANOPB_VERSION nanopb-0.2.5-dev +#define NANOPB_VERSION nanopb-0.2.5 /* Include all the system headers needed by nanopb. You will need the * definitions of the following: |