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>2016-02-13 13:39:45 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2016-02-13 13:39:45 +0300
commita57831acfabef58dd00dad557cbb340f49c3f30a (patch)
tree764f73979b35069e8b2a2e1c4038d3a2207c395a
parent6f0dfe1b3fd52c2d141fff412b70b64ebcaf5ad8 (diff)
Publishing nanopb-0.3.5nanopb-0.3.5
-rw-r--r--CHANGELOG.txt5
-rw-r--r--docs/migration.rst2
-rwxr-xr-xgenerator/nanopb_generator.py2
-rw-r--r--pb.h2
4 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 80d2b82..fd983df 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 26bd25d..cd5911f 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 3c1f434..95d6e0c 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
diff --git a/pb.h b/pb.h
index 50f71e8..d3f2413 100644
--- a/pb.h
+++ b/pb.h
@@ -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: