diff options
-rw-r--r-- | CHANGELOG.txt | 4 | ||||
-rw-r--r-- | docs/migration.rst | 2 | ||||
-rwxr-xr-x | generator/nanopb_generator.py | 2 | ||||
-rw-r--r-- | pb.h | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 3346be3d..d10364f4 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,6 +1,6 @@ -nanopb-0.3.2 (2015-01-xx) +nanopb-0.3.2 (2015-01-24) Fix memory leaks with PB_ENABLE_MALLOC with some submessage hierarchies (issue 138) - Implement support for oneofs (C unions). (issue 131) + Implement support for oneofs (C unions). (issues 131, 141) Add int_size option for generator (issue 139) Add compilation option to disable struct packing. (issue 136) Change PB_RETURN_ERROR() macro to avoid compiler warnings (issue 140) diff --git a/docs/migration.rst b/docs/migration.rst index d5ded643..ac92db88 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.2 (2015-01-xx) +Nanopb-0.3.2 (2015-01-24) ========================= Add support for OneOfs diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index 9750b670..8c87ff53 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.3.2-dev" +nanopb_version = "nanopb-0.3.2" import sys @@ -50,7 +50,7 @@ /* Version of the nanopb library. Just in case you want to check it in * your own program. */ -#define NANOPB_VERSION nanopb-0.3.2-dev +#define NANOPB_VERSION nanopb-0.3.2 /* Include all the system headers needed by nanopb. You will need the * definitions of the following: |