Skip to content

Commit 6cfe48d

Browse files
Publishing nanopb-0.4.8
1 parent f228479 commit 6cfe48d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14.0)
22

33
project(nanopb C)
44

5-
set(nanopb_VERSION_STRING nanopb-0.4.8-dev)
5+
set(nanopb_VERSION_STRING nanopb-0.4.8)
66
set(nanopb_SOVERSION 0)
77

88
string(REPLACE "nanopb-" "" nanopb_VERSION ${nanopb_VERSION_STRING})

conanfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class NanoPbConan(ConanFile):
55
name = "nanopb"
6-
version = "0.4.8-dev"
6+
version = "0.4.8"
77
license = "zlib"
88
url = "https://jpa.kapsi.fi/nanopb/"
99
description = "Protocol Buffers with small code size"

extra/poetry/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "nanopb"
3-
version = "0.4.8-dev"
3+
version = "0.4.8"
44
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."
55
authors = ["Petteri Aimonen <jpa@npb.mail.kapsi.fi>"]
66
license = "Zlib"

generator/nanopb_generator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from __future__ import unicode_literals
55

66
'''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.'''
7-
nanopb_version = "nanopb-0.4.8-dev"
7+
nanopb_version = "nanopb-0.4.8"
88

99
import sys
1010
import re

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Nanopb",
3-
"version": "0.4.7",
3+
"version": "0.4.8",
44
"keywords": "protocol buffers, protobuf, google",
55
"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 (<10 kB ROM, <1 kB RAM) memory constraints.",
66
"repository": {

pb.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565

6666
/* Version of the nanopb library. Just in case you want to check it in
6767
* your own program. */
68-
#define NANOPB_VERSION "nanopb-0.4.8-dev"
68+
#define NANOPB_VERSION "nanopb-0.4.8"
6969

7070
/* Include all the system headers needed by nanopb. You will need the
7171
* definitions of the following:

0 commit comments

Comments
 (0)