diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-10-30 08:13:46 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2016-10-30 08:13:46 +0200 |
commit | af601e4e971075e1f53a26f6c1ab63320823d8c2 (patch) | |
tree | ab673c14fedfd80e8713306a7a35c11715138736 | |
parent | 60d8ba229b58f07fdefc31e2756402cc74cede5f (diff) |
Setting version to 0.3.8-dev
-rw-r--r-- | CMakeLists.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/CMakeLists.txt b/CMakeLists.txt index a09e97c0..7889bf4a 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.7) +set(nanopb_VERSION_STRING nanopb-0.3.8-dev) string(REPLACE "nanopb-" "" nanopb_VERSION ${nanopb_VERSION_STRING}) diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index 351c37e3..9ccb9b93 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.7" +nanopb_version = "nanopb-0.3.8-dev" 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.7 +#define NANOPB_VERSION nanopb-0.3.8-dev /* Include all the system headers needed by nanopb. You will need the * definitions of the following: |