Skip to content

Commit

Permalink
Publishing nanopb-0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
PetteriAimonen committed Jun 23, 2020
1 parent e766f7d commit df0e92f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 2.8.12)

project(nanopb C)

set(nanopb_VERSION_STRING nanopb-0.4.2-dev)
set(nanopb_VERSION_STRING nanopb-0.4.2)
set(nanopb_SOVERSION 0)

string(REPLACE "nanopb-" "" nanopb_VERSION ${nanopb_VERSION_STRING})
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class NanoPbConan(ConanFile):
name = "nanopb"
version = "0.4.2-dev"
version = "0.4.2"
license = "zlib"
url = "https://jpa.kapsi.fi/nanopb/"
description = "Protocol Buffers with small code size"
Expand Down
2 changes: 1 addition & 1 deletion extra/poetry/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "nanopb"
version = "0.4.2-dev"
version = "0.4.2"
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"
Expand Down
2 changes: 1 addition & 1 deletion generator/nanopb_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from __future__ import unicode_literals

'''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.'''
nanopb_version = "nanopb-0.4.2-dev"
nanopb_version = "nanopb-0.4.2"

import sys
import re
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Nanopb",
"version": "0.4.1",
"version": "0.4.2",
"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 (<10 kB ROM, <1 kB RAM) memory constraints.",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion pb.h
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

/* Version of the nanopb library. Just in case you want to check it in
* your own program. */
#define NANOPB_VERSION nanopb-0.4.2-dev
#define NANOPB_VERSION nanopb-0.4.2

/* Include all the system headers needed by nanopb. You will need the
* definitions of the following:
Expand Down
2 changes: 1 addition & 1 deletion tests/docker_images/ubuntu1804/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN apt -y install --fix-missing
RUN apt -y install apt-utils

RUN apt -y install git scons build-essential g++
RUN apt -y install protobuf-compiler python python-protobuf
RUN apt -y install protobuf-compiler python3-protobuf python3

RUN git clone https://github.com/nanopb/nanopb.git
RUN cd nanopb/tests && scons
Expand Down

0 comments on commit df0e92f

Please sign in to comment.