Skip to content

Commit

Permalink
Publishing nanopb-0.3.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PetteriAimonen committed Nov 10, 2018
1 parent 9426c11 commit 3626b5c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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})
Expand Down
2 changes: 1 addition & 1 deletion generator/nanopb_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion pb.h
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 3626b5c

Please sign in to comment.