diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-02-13 12:39:45 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-02-13 12:39:45 +0200 |
commit | a57831acfabef58dd00dad557cbb340f49c3f30a (patch) | |
tree | 764f73979b35069e8b2a2e1c4038d3a2207c395a | |
parent | 6f0dfe1b3fd52c2d141fff412b70b64ebcaf5ad8 (diff) |
Publishing nanopb-0.3.5
-rw-r--r-- | CHANGELOG.txt | 5 | ||||
-rw-r--r-- | docs/migration.rst | 2 | ||||
-rwxr-xr-x | generator/nanopb_generator.py | 2 | ||||
-rw-r--r-- | pb.h | 2 |
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 80d2b826..fd983dfe 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,7 @@ -nanopb-0.3.5 (2016-02-xx) +nanopb-0.3.5 (2016-02-13) + NOTE: If you are using pb_syshdr.h, you will need to add uint_least8_t + definition. See docs/migration.rst for details. + Fix generator crash with Enum inside Oneof (#188) Fix some generator regressions related to .options file path (#172) Add support for platforms without uint8_t (#191) diff --git a/docs/migration.rst b/docs/migration.rst index 26bd25dd..cd5911f5 100644 --- a/docs/migration.rst +++ b/docs/migration.rst @@ -11,7 +11,7 @@ are included, in order to make it easier to find this document. .. contents :: -Nanopb-0.3.5 (2016-xx-xx) +Nanopb-0.3.5 (2016-02-13) ========================= Add support for platforms without uint8_t diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index 3c1f4341..95d6e0c3 100755 --- a/generator/nanopb_generator.py +++ b/generator/nanopb_generator.py @@ -3,7 +3,7 @@ from __future__ import unicode_literals '''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.''' -nanopb_version = "nanopb-0.3.5-dev" +nanopb_version = "nanopb-0.3.5" import sys import re @@ -46,7 +46,7 @@ /* Version of the nanopb library. Just in case you want to check it in * your own program. */ -#define NANOPB_VERSION nanopb-0.3.5-dev +#define NANOPB_VERSION nanopb-0.3.5 /* Include all the system headers needed by nanopb. You will need the * definitions of the following: |