diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-06-19 10:18:03 +0300 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-06-19 10:18:03 +0300 |
commit | eb0e73ca53e09f2ba42cd9775168b683c98b84ea (patch) | |
tree | 884eb998754a41787e013ca291051aba27b3ed39 | |
parent | b9f552d25610acccde8622afd5d2b445756c05cc (diff) |
Publishing nanopb-0.3.6
-rw-r--r-- | CHANGELOG.txt | 2 | ||||
-rwxr-xr-x | generator/nanopb_generator.py | 2 | ||||
-rw-r--r-- | pb.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 9e3ad69a..8437688f 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,4 +1,4 @@ -nanopb-0.3.6 (2016-06-xx) +nanopb-0.3.6 (2016-06-19) Protect against corrupted _count fields in pb_release (#205) Fix error in STATIC_ASSERT with multiple files (#203) Add -D option to specify output directory (#193) diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index 84f5d094..2f1d92f4 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.6-dev" +nanopb_version = "nanopb-0.3.6" 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.6-dev +#define NANOPB_VERSION nanopb-0.3.6 /* Include all the system headers needed by nanopb. You will need the * definitions of the following: |