https://github.com/cran/Rcpp
Raw File
Tip revision: 33f2e7b81bd0899c195f01c7cc6b3e7c41ebc8f8 authored by Dirk Eddelbuettel on 09 November 2009, 00:00:00 UTC
version 0.6.8
Tip revision: 33f2e7b
ChangeLog
2009-11-09  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.8

	* src/RcppParams.{cpp,h}: Code reorginsation, moved out of Rcpp.{h,cpp}
	* src/RcppDate.{cpp,h}: idem
	* src/RcppDatetime.{cpp,h}: idem
	* src/RcppCommon.h: New header file for common defines and includes
	* src/Makevars{,.win}: Updated and generalised to reflect new files

2009-11-08  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.7

	* man/RcppVector.Rd: Remove erraneous use of \R in \title{} section
	  noticed by the Rd parser in R-devel (with thanks to Kurt Hornik)

2009-11-06  Dirk Eddelbuettel  <edd@debian.org>

	* src/RcppList.{h,cppp}: Added a simple class to accept list()
	  objects in order to cope with non-rectangular data-types -- this
	  comes from the RProtoBuf code currently only on r-forge where
	  we need accept lists that are potentially nested.
	  The API for RcppList is not fully fleshed out and needs a few
	  more append() member functions. Also length is currently fixed.

	* cleanup: Change header file removal to Rcpp*.h

	* inst/README: Added short README about history and status

	* inst/doc/: Updated doxygen documentation

2009-09-29  Dirk Eddelbuettel  <edd@dexter>

	* inst/examples/functionCallback/*: Added simple C++ / R example of
	  defining an R function that is passed to and called from C++

2009-08-03  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.6

	* src/Rcpp.{h,cpp}: Added exists() method for RcppParams to test
	  for existence of a named parameter.

	* inst/doc/: Updated doxygen documentation

2009-04-01  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.5

	* COPYING: Added

2009-03-30  Dirk Eddelbuettel  <edd@debian.org>

	* src/Makevars: Add $(R_ARCH) to target directory path when copying
	  the header file as an OS X user reported not finding it with
	  default settings.

2009-03-01  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.4

	* .Rbuildignore: Added to exclude debian/ from source tarball

2009-02-25  Dirk Eddelbuettel  <edd@debian.org>

	* src/Makevars.win: Renamed from Makefile.win, added missing mkdir
	* cleanup: Remove a few more Windows files

2009-02-24  Dirk Eddelbuettel  <edd@debian.org>

        * inst/doc/{html,latex,man}: Added new documentation of the C++ classes
	* doxyfile: Added Doxygen configuration file for doc generation

2009-02-22  Dirk Eddelbuettel  <edd@debian.org>

	* src/Rcpp.{h,cpp}: cleaner use of namespace 'std' by formal prefix
	  rather than via 'using namespace std'
	* src/Rcpp.h: define R_NO_MAP and use Rf_* form of R API functions

2009-02-18  Dirk Eddelbuettel  <edd@debian.org>

	* src/Rcpp.{h,cpp}: Added a few explicit casts, and removed unused
	  loop variable; all to make 'g++ -Wall' happy

2009-02-10  Dirk Eddelbuettel  <edd@debian.org>

	* src/Rcpp.{cpp,h}: Expanded a few of the throw() messages

2009-01-09  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.3

	* R/RcppLdpath.R: Also defined shorter functions CxxFlags() and
	  LdFlags() which cat() the longer forms RcppCxxFlags() and
	  RcppLdFlags() to further simplify use via litter or Rscript in
	  Makefile or Makevars

	* man/Rcpp-package.Rd: Mention short form CxxFlags() and LdFlags()

	* src/Makevars: Applied another build correction for OS X suggested
	  by Simon Urbanek

	* src/Rcpp.{cpp,h}: Added 'view-only' classes RcppVectorView,
	  RcppMatrixView and RcppStringVectorView contributed by David Reiss

2008-12-02  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.2

	* R/RcppLdPath.R: Correct output for the default Linux case

2008-11-30  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.6.1

	* src/Makevars: Added, replacing src/Makefile: thanks to Simon for a
	  rewrite that provides OS X support
	* src/Makefile: Retired
	* src/Makefile.win: Now build libRcpp.a instead of Rcpp.a

	* src/Rcpp.{cpp,h}: Removed #ifdef statements related to QuantLib and
	  Date ops as we no longer need to split this off -- one build for all
	  uses; also added another date offset for the difference between the
	  Unix epoch of Jan 1, 1970 and what certain spreadsheets use (which is
	  what QuantLib) follows.  With this change, Rcpp is completely
	  decoupled from QuantLib headers, yet can be used from QuantLib 0.2.10
	  or later. However, this also removes data conversion from R/Rcpp to
	  QL as Rcpp no longer 'knows' QL.

	* R/RcppLdPath.R: Adds new functions RcppLdPath() to return lib/
	  directory path, and RcppLdFlags() to return arguments, including the
	  optional rpath settings on Linux

	* R/RcppExample.R: Added new example 'RcppVectorExample()', extended
	  default print method for examples

	* man/Rcpp-package.Rd: Expanded / updated documentation of package
	  use when building other packages

	* cleanup: Removing static libraries too but do not remove src/Makevars

2008-11-05  Dirk Eddelbuettel  <edd@debian.org>

	* Release 0.6.0

	* New maintainer

	* src/Makefile{,.win}: New files, including functionality from both
 	  configure and RcppSrc/Makefile; we now build two libraries, one for
	  use by the package which also runs the example, and one for users to
	  link against
	* src/Makevars.in: Removed
	* src/Rcpp.{cpp,h}: moved in from ../RcppSrc

	* src/Rcpp.{cpp,h}: Add new type RcppDatetime corresponding to
  	  POSIXct in with full support for microsecond time resolution
	  between R and C++

	* man/*: Several new manual pages added

	* configure{,.in,.win}: Removed as src/Makefile* can handle this more
	  easily

	* DESCRIPTION: Minor cleanup and reformatting, Date: now uses
  	  svn:keyword Date property

	* NAMESPACE: Renamed RcppTemplateVersion to RcppVersion,
	  deleted RcppDemo

	* demo/ directory removed as vignette("RcppAPI") is easier and more
	  reliable to show vignette documentation

	* R/zzz.R: RcppTemplateDemo() removed, vignette("RcppAPI") is easier
	* man/RcppTemplateDemo.Rd removed as well

	* R/RcppExample.R: reindented, rewritten to set default arguments

	* R/RcppTemplateVersion.R: renamed to RcppVersion.R
	* man/RcppTemplateVersion.Rd: renamed to RcppVersion.Rd

	* RcppSrc/Rcpp.{cpp,h}: moved to src/ directory
	* RcppSrc/Makefile{,.win}: removed

	* inst/doc/RcppAPI.{Rnw,pdf}: Added footnote onto titlepage about how
	  this document has not (yet) been updated along with the channges made
back to top