Publishing nanopb-0.3.2
This commit is contained in:
@@ -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)
|
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 int_size option for generator (issue 139)
|
||||||
Add compilation option to disable struct packing. (issue 136)
|
Add compilation option to disable struct packing. (issue 136)
|
||||||
Change PB_RETURN_ERROR() macro to avoid compiler warnings (issue 140)
|
Change PB_RETURN_ERROR() macro to avoid compiler warnings (issue 140)
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ are included, in order to make it easier to find this document.
|
|||||||
|
|
||||||
.. contents ::
|
.. contents ::
|
||||||
|
|
||||||
Nanopb-0.3.2 (2015-01-xx)
|
Nanopb-0.3.2 (2015-01-24)
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
Add support for OneOfs
|
Add support for OneOfs
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
|
|
||||||
'''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.'''
|
'''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.'''
|
||||||
nanopb_version = "nanopb-0.3.2-dev"
|
nanopb_version = "nanopb-0.3.2"
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|||||||
2
pb.h
2
pb.h
@@ -50,7 +50,7 @@
|
|||||||
|
|
||||||
/* Version of the nanopb library. Just in case you want to check it in
|
/* Version of the nanopb library. Just in case you want to check it in
|
||||||
* your own program. */
|
* 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
|
/* Include all the system headers needed by nanopb. You will need the
|
||||||
* definitions of the following:
|
* definitions of the following:
|
||||||
|
|||||||
Reference in New Issue
Block a user