Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2022-12-11 13:54:08 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2022-12-11 13:54:08 +0300
commitd7b99225ecf8a830712787ae5141242e4e465dd0 (patch)
tree92c918ae9e56493c6e8fde20c6b4e7e0c0de4330
parentb97aa657a706d3ba4a9a6ccca7043c9d6fe41cba (diff)
Setting version to 0.4.8-dev
-rw-r--r--CHANGELOG.txt2
-rw-r--r--CMakeLists.txt2
-rw-r--r--conanfile.py2
-rw-r--r--extra/poetry/pyproject.toml2
-rwxr-xr-xgenerator/nanopb_generator.py2
-rw-r--r--pb.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index f57c5e8..cd1cca3 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,4 +1,4 @@
-nanopb-0.4.7 (2022-12-xx)
+nanopb-0.4.7 (2022-12-11)
Fix comments generation for submessages (#788)
Fix handling of spaces in arguments passed through protoc (#810)
Fix problems with multiple files and mangle_names option (#783, #820)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8d241c5..2e57090 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.7)
+set(nanopb_VERSION_STRING nanopb-0.4.8-dev)
set(nanopb_SOVERSION 0)
string(REPLACE "nanopb-" "" nanopb_VERSION ${nanopb_VERSION_STRING})
diff --git a/conanfile.py b/conanfile.py
index 518f01a..db95f36 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -3,7 +3,7 @@ from os import path
class NanoPbConan(ConanFile):
name = "nanopb"
- version = "0.4.7"
+ version = "0.4.8-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 82a6391..90a079f 100644
--- a/extra/poetry/pyproject.toml
+++ b/extra/poetry/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nanopb"
-version = "0.4.7"
+version = "0.4.8-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 <jpa@npb.mail.kapsi.fi>"]
license = "Zlib"
diff --git a/generator/nanopb_generator.py b/generator/nanopb_generator.py
index 84372fc..fb75cf7 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.7"
+nanopb_version = "nanopb-0.4.8-dev"
import sys
import re
diff --git a/pb.h b/pb.h
index 5b3e1ef..6a8595a 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.7"
+#define NANOPB_VERSION "nanopb-0.4.8-dev"
/* Include all the system headers needed by nanopb. You will need the
* definitions of the following: