From 9aa922d9dbaf147b07cc0fdb2392a9995c4e95db Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Sat, 11 Nov 2023 10:06:11 +0200 Subject: Setting version to 0.4.9-dev --- CMakeLists.txt | 2 +- conanfile.py | 2 +- extra/poetry/pyproject.toml | 2 +- generator/nanopb_generator.py | 2 +- pb.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 273a841..a89867f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14.0) project(nanopb C) -set(nanopb_VERSION_STRING nanopb-0.4.8) +set(nanopb_VERSION_STRING nanopb-0.4.9-dev) set(nanopb_SOVERSION 0) string(REPLACE "nanopb-" "" nanopb_VERSION ${nanopb_VERSION_STRING}) diff --git a/conanfile.py b/conanfile.py index d2a25a2..7ed2d30 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ from os import path class NanoPbConan(ConanFile): name = "nanopb" - version = "0.4.8" + version = "0.4.9-dev" license = "zlib" url = "https://jpa.kapsi.fi/nanopb/" description = "Protocol Buffers with small code size" diff --git a/extra/poetry/pyproject.toml b/extra/poetry/pyproject.toml index 454b9af..7713f7a 100644 --- a/extra/poetry/pyproject.toml +++ b/extra/poetry/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nanopb" -version = "0.4.8" +version = "0.4.9-dev" description = "Nanopb is a small code-size Protocol Buffers implementation in ansi C. It is especially suitable for use in microcontrollers, but fits any memory restricted system." authors = ["Petteri Aimonen "] license = "Zlib" diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py index c11f6fa..ff429bf 100755 --- a/generator/nanopb_generator.py +++ b/generator/nanopb_generator.py @@ -4,7 +4,7 @@ from __future__ import unicode_literals '''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.''' -nanopb_version = "nanopb-0.4.8" +nanopb_version = "nanopb-0.4.9-dev" import sys import re diff --git a/pb.h b/pb.h index c7a055f..8745ecc 100644 --- a/pb.h +++ b/pb.h @@ -65,7 +65,7 @@ /* Version of the nanopb library. Just in case you want to check it in * your own program. */ -#define NANOPB_VERSION "nanopb-0.4.8" +#define NANOPB_VERSION "nanopb-0.4.9-dev" /* Include all the system headers needed by nanopb. You will need the * definitions of the following: -- cgit v1.2.3