[Rprotobuf-commits] r781 - in pkg: . inst/unitTests src

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Jan 14 07:19:25 CET 2014


Author: murray
Date: 2014-01-14 07:19:25 +0100 (Tue, 14 Jan 2014)
New Revision: 781

Modified:
   pkg/ChangeLog
   pkg/DESCRIPTION
   pkg/inst/unitTests/runit.bool.R
   pkg/src/wrapper_ArrayInputStream.cpp
Log:
Increment version to 0.4 -- Dirk to review and push to CRAN.

Modified: pkg/ChangeLog
===================================================================
--- pkg/ChangeLog	2014-01-14 06:16:40 UTC (rev 780)
+++ pkg/ChangeLog	2014-01-14 06:19:25 UTC (rev 781)
@@ -6,6 +6,7 @@
 	  issues}): Hide 64-bit field accesses with if conditional to
 	  avoid running code that won't work on platforms without 64-bit
 	  long longs.
+	* DESCRIPTION (Version): Increment to 0.4.0
 
 2014-01-09  Murray Stokely  <mstokely at google.com>
 

Modified: pkg/DESCRIPTION
===================================================================
--- pkg/DESCRIPTION	2014-01-14 06:16:40 UTC (rev 780)
+++ pkg/DESCRIPTION	2014-01-14 06:19:25 UTC (rev 781)
@@ -1,5 +1,5 @@
 Package: RProtoBuf
-Version: 0.3.2.5
+Version: 0.4
 Date: $Date$
 Author: Romain Francois, Dirk Eddelbuettel, Murray Stokely and Jeroen Ooms
 Maintainer: Dirk Eddelbuettel <edd at debian.org>

Modified: pkg/inst/unitTests/runit.bool.R
===================================================================
--- pkg/inst/unitTests/runit.bool.R	2014-01-14 06:16:40 UTC (rev 780)
+++ pkg/inst/unitTests/runit.bool.R	2014-01-14 06:19:25 UTC (rev 781)
@@ -22,7 +22,7 @@
                                            package="RProtoBuf")
         readProtoFiles(file=unittest.proto.file)
     }
-
+ 
     a <- new(protobuf_unittest.TestAllTypes)
     a$optional_bool <- TRUE
     a$optional_bool <- FALSE

Modified: pkg/src/wrapper_ArrayInputStream.cpp
===================================================================
--- pkg/src/wrapper_ArrayInputStream.cpp	2014-01-14 06:16:40 UTC (rev 780)
+++ pkg/src/wrapper_ArrayInputStream.cpp	2014-01-14 06:19:25 UTC (rev 781)
@@ -2,11 +2,12 @@
 
 #include "rprotobuf.h"
 #include "RcppMacros.h"
-
+#include <stdio.h>
 namespace rprotobuf {
 
 RPB_FUNCTION_2(S4_ArrayInputStream, ArrayInputStream__new, Rcpp::RawVector payload,
                int block_size) {
+    printf("In ArrayInputStream__new, returning S4_ArrayInputStream(payload, blocksize)\n");
     return S4_ArrayInputStream(payload, block_size);
 }
 }



More information about the Rprotobuf-commits mailing list