aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2018-11-10 13:10:04 +0200
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2018-11-10 13:10:04 +0200
commit3626b5c40e2457629ac60a563dde523be7c10bb4 (patch)
tree636d14dc18fbba4c4a8e743abd53e6023186be8a
parent9426c11840c979dd46d917827cecfdfbd36cf739 (diff)
downloadnanopb-c-3626b5c40e2457629ac60a563dde523be7c10bb4.tar.gz
Publishing nanopb-0.3.9.2
-rw-r--r--CHANGELOG.txt2
-rw-r--r--CMakeLists.txt2
-rwxr-xr-xgenerator/nanopb_generator.py2
-rw-r--r--library.json2
-rw-r--r--pb.h2
5 files changed, 5 insertions, 5 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 559e941..4c6ab7f 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,4 +1,4 @@
-nanopb-0.3.9.2 (2018-11-xx)
+nanopb-0.3.9.2 (2018-11-10)
Erroneous free() when using callbacks combined with PB_ENABLE_MALLOC (#346)
Fix possible null-pointer dereference in decode_callback_field (#342)
Fix FindNanopb.cmake on Windows (#335)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index db0903d..642c68d 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.12)
project(nanopb C)
-set(nanopb_VERSION_STRING nanopb-0.4.0-dev)
+set(nanopb_VERSION_STRING nanopb-0.3.9.2)
set(nanopb_SOVERSION 0)
string(REPLACE "nanopb-" "" nanopb_VERSION ${nanopb_VERSION_STRING})
diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py
index 66114f8..906a1ac 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.4.0-dev"
+nanopb_version = "nanopb-0.3.9.2"
import sys
import re
diff --git a/library.json b/library.json
index 0a3e17c..0a6e5ba 100644
--- a/library.json
+++ b/library.json
@@ -1,6 +1,6 @@
{
"name": "Nanopb",
- "version": "0.3.9",
+ "version": "0.3.9.2",
"keywords": "protocol buffers, protobuf, google",
"description": "Nanopb is a plain-C implementation of Google's Protocol Buffers data format. It is targeted at 32 bit microcontrollers, but is also fit for other embedded systems with tight (2-10 kB ROM, <1 kB RAM) memory constraints.",
"repository": {
diff --git a/pb.h b/pb.h
index a0dd323..a10f012 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.4.0-dev
+#define NANOPB_VERSION nanopb-0.3.9.2
/* Include all the system headers needed by nanopb. You will need the
* definitions of the following: