From a55a66e792b30a65606cce3e61f28c6c6e14d050 Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Sun, 5 Mar 2017 18:39:40 +0200 Subject: Setting version to 0.3.9-dev --- CMakeLists.txt | 2 +- generator/nanopb_generator.py | 2 +- library.json | 2 +- pb.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b8a2946..c78f8c3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8) project(nanopb C) -set(nanopb_VERSION_STRING nanopb-0.3.8) +set(nanopb_VERSION_STRING nanopb-0.3.9-dev) string(REPLACE "nanopb-" "" nanopb_VERSION ${nanopb_VERSION_STRING}) diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index e4d3d27..359e184 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.8" +nanopb_version = "nanopb-0.3.9-dev" import sys import re diff --git a/library.json b/library.json index 1acd14e..8e963f3 100644 --- a/library.json +++ b/library.json @@ -1,6 +1,6 @@ { "name": "Nanopb", - "version": "0.3.8", + "version": "0.3.9-dev", "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 bf05a63..c7e6bc6 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.8 +#define NANOPB_VERSION nanopb-0.3.9-dev /* Include all the system headers needed by nanopb. You will need the * definitions of the following: -- cgit 1.2.3-korg