Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2015-01-24 18:33:01 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2015-01-24 18:33:01 +0300
commitacd72917912aa99e9751766ec90e2d2156639a60 (patch)
tree75286c291269bd323741ff76ba124979730943d2
parentd32d04ba1011806fe769f95dc2a88964f1102c6c (diff)
Publishing nanopb-0.3.2nanopb-0.3.2
-rw-r--r--CHANGELOG.txt4
-rw-r--r--docs/migration.rst2
-rwxr-xr-xgenerator/nanopb_generator.py2
-rw-r--r--pb.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 3346be3..d10364f 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 d5ded64..ac92db8 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 9750b67..8c87ff5 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
diff --git a/pb.h b/pb.h
index fc846c9..90da623 100644
--- a/pb.h
+++ b/pb.h
@@ -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: