Publishing nanopb-0.1.8
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>
Thu, 13 Dec 2012 19:29:57 +0000 (21:29 +0200)
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>
Thu, 13 Dec 2012 19:29:57 +0000 (21:29 +0200)
CHANGELOG
generator/nanopb_generator.py
pb.h

index ecb13e0..fa84923 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+nanopb-0.1.8
+ Fix bugs in the enum short names introduced in 0.1.7 (issues 42, 43)
+ Fix STATIC_ASSERT macro when using multiple .proto files. (issue 41)
+ Fix missing initialization of istream.errmsg
+ Make tests/Makefile work for non-gcc compilers (issue 40)
+
 nanopb-0.1.7
  Remove "skip" mode from pb_istream_t callbacks. Example implementation had a bug. (issue 37)
  Add option to use shorter names for enum values (issue 38)
index 2a3cab2..feb7f14 100644 (file)
@@ -1,5 +1,5 @@
 '''Generate header file for nanopb from a ProtoBuf FileDescriptorSet.'''
-nanopb_version = "nanopb-0.1.8-dev"
+nanopb_version = "nanopb-0.1.8"
 
 try:
     import google.protobuf.descriptor_pb2 as descriptor
diff --git a/pb.h b/pb.h
index 5e9fad2..14d9c1c 100644 (file)
--- a/pb.h
+++ b/pb.h
@@ -6,7 +6,7 @@
  * see pb_encode.h or pb_decode.h
  */
 
-#define NANOPB_VERSION nanopb-0.1.8-dev
+#define NANOPB_VERSION nanopb-0.1.8
 
 #include <stdint.h>
 #include <stddef.h>