2010-05-18  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.2.0

2010-05-18  Douglas Bates  <bates@stat.wisc.edu>

	* man/fastLm/Rd: Added rank-deficient example to illustrate possible
	problems with fastLmPure() and fastLm()

	* src/fastLm/cpp: Compute sig2 via std::inner_product

2010-05-17  Dirk Eddelbuettel  <edd@debian.org>

	* inst/include/*: updated to Armadillo 0.9.8

2010-05-17   Romain Francois <romain@r-enthusiasts.com>

	* inst/include/RcppArmadillo.h: workaround for win64

2010-05-13  Dirk Eddelbuettel  <edd@debian.org>

	* R/fastLm.R: fastLm() is now generic and has a formula interface as
	well as methods for print, summary, predict to behave like a standard
	model fitting function

	* R/fastLm.Rd: Added documentation for new methods

	* src/fastLm.cpp: Small additions to returned parameters to support
	new functionality

2010-05-04   Romain Francois <romain@r-enthusiasts.com>

	* R/RcppArmadillo.package.skeleton.R: new package skeleton function
	similar to Rcpp::Rcpp.package.skeleton but targetting use of
	RcppArmadillo

	* README: removed and promoted to additional documentation in
	?RcppArmadillo

2010-05-03  Dirk Eddelbuettel  <edd@debian.org>

	* inst/include/* : updated to armadillo 0.9.6

2010-04-03  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Remove OS_type restriction now that RcppArmadillo
	  includes Armadillo headers, add Doug to Authors and Maintainers

2010-04-03  Douglas Bates  <bates@stat.wisc.edu>

	* inst/include/armadillo: Added the armadillo headers and the
	armadillo_bits directory.  This is from the armadillo sources with
	only the armadillo_bits/config.hpp file modified.

	* configure: and many other configuration files.  Removed the
	foo.in files, modified cleanup not to remove the target files.

2010-03-20  Dirk Eddelbuettel  <edd@debian.org>

	* src/fastLm.cpp: Small fix for Armadillo 0.8.2

2010-03-17   Romain Francois <romain@r-enthusiasts.com>

	* src/fastLm.cpp: added some arma:: prefix

	* src/RcppArmadillo.cpp: update examples to use make_list and showcase
	various ways to use them : Named(.)=., _[.] = , Named( ., . )

2010-03-11  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.1.0 and initial CRAN upload

2010-03-03  Dirk Eddelbuettel  <edd@debian.org>

	* src/fastLm.cpp: Moved into its own file, some more polish

2010-03-03  Romain Francois <romain@r-enthusiasts.com>

	* inst/include/RcppArmadillo.h: avoid an extra memory copy when
	possible (i.e. in wrap( eGlue) and wrap( eOp ) when the elem_type
	is int or double).

	* inst/include/RcppArmadilloDefines.in.h added the SCALAR macro
	to take care of the 0.9.0 api change

	* src/RcppArmadillo.cpp : fix a runtime error uisng the SCALAR macro

2010-03-02  Dirk Eddelbuettel  <edd@debian.org>

	* src/RcppArmadillo.cpp: Added bare-bones 'fastLm' function
	* R/fastLm.R: Added fastLm R wrapper for C++ fastLm
	* man/fastLm.Rd: Added manual page
	* inst/unitTests/runit.RcppArmadillo.R: Added unit test
	* NAMESPACE: Made fastLm visible

2010-03-02  Romain Francois <romain@r-enthusiasts.com>

	* inst/include/RcppArmadillo.h: support for Armadillo 0.9.*

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

	* configure.in: Add configure support to test for version 0.9.0

2010-02-23  Romain Francois <romain@r-enthusiasts.com>

	* inst/include/RcppArmadillo.h: support for wrap( arma::Glue )
	and wrap( arma::Op ) enabling wrap()'ing arbitrary expressions
	involving arma::Mat objects, for example wrap( m1 + m2 ), or
	wrap( -m1 )

	* inst/unitTests/runit.RcppArmadillo.R: new unit test for
	wrap( Glue ) and wrap( Op )

2010-02-20  Dirk Eddelbuettel  <edd@debian.org>

	* configure.in: Add configure support to test for presence of
	  'armadillo' header and working 'libarmadillo' library; and
	  a test for version 0.7.0 or higher (for Cube() type)
	* src/Makevars.in: Setup to be filled-in from configure
	* src/RcppArmadilloDefines.h.in: Idem
	* cleanup: Added to remove configure-generated files

	* R/flags.R: Small cleanups

	* src/RcppArmadillo.h: Use the #define ARMA_HAS_CUBE from the
	  autogenerated header, reindent using Emacs' defaults

2010-02-19  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Restrict to 'OS_type: unix' for now,
	  set Date: as an SVN property

2010-02-19  Romain Francois <romain@r-enthusiasts.com>

	* added support for field<T> where T is wrappable

2010-02-17  Romain Francois <romain@r-enthusiasts.com>

	* added support for as<Mat<T>> as<Row<T>> and as<Col<T>>
	with T in : int, double, float, unsigned int

	* added untested support for wrap( Cube<T> )

2010-02-16  Dirk Eddelbuettel  <edd@debian.org>

	* Initial package structure based on first proof-of-concept

2010-02-16  Romain Francois <romain@r-enthusiasts.com>

	* initial version, covering wrap(Mat), wrap(Col), wrap(Row)
