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

	* DESCRIPTION (Version, Date): Release 0.1.1 

2017-02-08  Dirk Eddelbuettel  <edd@max.eddelbuettel.com>

	* inst/include/cpptoml.h: Sync'ed with cpptoml upstream

2017-01-29  Dirk Eddelbuettel  <edd@debian.org>

	* R/parseToml.R: Output from print.toml() method without final NULL

        * tests/arrays.Rout.save: Updated reference output
        * tests/bool_datetime.Rout.save: Idem
        * tests/float.Rout.save: Idem
        * tests/integer.Rout.save: Idem
        * tests/strings.Rout.save: Idem
        * tests/tables.Rout.save: Idem
        * tests/tomlExamples.Rout.save: Idem

2017-01-24  Dirk Eddelbuettel  <edd@debian.org>

	* src/parse.cpp (tomlparseImpl): Suppport TOML parsing from a
	character variable (with thanks to Charles for a hint in #7)

	* R/parseToml.R (parseTOML): Additional argument to select
	filemode (default) or parse from character

	* man/parseTOML.Rd: Document new argument

2017-01-23  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION (Version, Date): New minor version

	* src/parse.cpp: Extended to support local_date(time)

	* inst/toml/ex2.toml: Extended for new types

2017-01-22  Dirk Eddelbuettel  <edd@debian.org>

	* inst/include/cpptoml.h: Sync'ed with cpptoml upstream

2017-01-05  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.1.0

	* inst/include/cpptoml.h: Sync'ed with cpptoml upstream

	* src/parse.cpp: Added copyright header
	* R/parseToml.R: Idem

	* .travis.yml: Switch to using run.sh for Travis CI

	* README.md: Updated

	* inst/NEWS.Rd: Added

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

	* DESCRIPTION (Version, Date): New minor version
	(BugReports, URL): Added

	* src/parse.cpp (local_timegm): Restore parts of old behaviour

	* src/Makevars.win: Added

	* .travis.yml: Use trusty, also dump logs on failure

2017-01-03  Devin Pastoor  <devin.pastoor@gmail.com>

	* src/parse.cpp (local_timegm): On Windows, use Rcpp::mktime00 (as
	suggested by Dirk in GitHub Issue #5)

2015-12-19  Dirk Eddelbuettel  <edd@debian.org>

 	* DESCRIPTION: Release 0.0.5

2015-12-17  Dirk Eddelbuettel  <edd@debian.org>

	* inst/include/cpptoml.h: Sync'ed with cpptoml upstream

	* src/parse.cpp: Small accomodations for changed cpptoml.h

	* tests/float.toml: No longer attempt to parse double number which
	previously overflowed and is now rejected by cpptoml
	* tests/toml_example-v0.4.0.toml: Ditto
	* tests/float.Rout.save: Ditto
	* tests/tomlExamples.Rout.save: Ditto

2015-07-16  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.0.4

2015-07-15  Dirk Eddelbuettel  <edd@debian.org>

	* inst/include/cpptoml.h: Minor update to upstream version

	* R/parseToml.R: Use utils::str() instead of str()

	* DESCRIPTION: More quoting of terms, rolled Version and Date

2015-07-09  Dirk Eddelbuettel  <edd@debian.org>

	* src/parse.cpp (collapsedList): Ensure list has content before
	iterating over it

2015-04-27  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Release 0.0.3

	* DESCRIPTION: More quoting of terms, rolled Version and Date, added URL

	* src/parse.cpp (local_timegm): Expand if defined() to Apple and BSDs

2015-04-25  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION: Renamed to RcppTOML, rolled Version and Date
	* NAMESPACE: Renamed to RcppTOML
	* README.md: Ditto
	* man/RcppTOML-package.Rd: Ditto
	* tests/*: Ditto

	* R/parseToml.R: Main function is parseTOML() now, keep aliases

	* README.md: Update current status, added Travis CI shield

	* man/RcppTOML-package.Rd: Expanded examples section and aliases

	* man/parseTOML.Rd: New manual page for main function

	* R/parseToml.R: Support verbose argument

	* src/parse.cpp (local_timegm): Add wrapper for timegm() using TZ
	resetting dance for OSs which do not have timegm()

2015-04-24  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION (OS_type): Set to unix while Windows still labours
	along with a non-C++11 compiler

	* src/parse.cpp (getValue): Use timegm() as we are translating a UTC
	time into time_t, not a local time

	* tests/*.R: Simplify tests call as we no longer need explicit sorting
	* tests/*.Rout.save: Update reference output as well

	* .travis.yml: Set g++-4.9 via update-alternatives

2015-04-23  Dirk Eddelbuettel  <edd@debian.org>

	* src/Makevars: Enable compile-time option to use std::map now that
	out pull request to cpptoml.h has been accepted
	* R/parseToml.R: Beginnings of an R class wrapper with simple print
	and summary methods

2015-04-20  Dirk Eddelbuettel  <edd@debian.org>

	* src/parse.cpp (tomlparse): Added one missing if (verbose)

2015-04-19  Dirk Eddelbuettel  <edd@debian.org>

	* R/sort.R (.sort): Add internal sort function to recursively sort
	objects returned as the C++ unordered_hash representation leads to
	different returns on different platforms (eg 32 vs 64 Linux)

2015-04-04  Dirk Eddelbuettel  <edd@debian.org>

	* DESCRIPTION (OS_type): Mention need for a genuine C++11 compiler

	* tests/toml_example.toml: Added regression tests from toml-lang repo
	* tests/toml_hard_example.toml: Ditto
	* teststoml_example-v0.4.0.toml: Ditto (with line 56 edited)
	* tests/tomlExamples.R: Added caller for toml examples
	* tests/tomlExamples.Rout.save: Added reference output

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

	* .travis.yml: Added, later disabled as Travis appears to be
	currently borked for new projects requiring C++11

2015-04-02  Dirk Eddelbuettel  <edd@debian.org>

	* src/parse.cpp: Simplification / correction to ordering; recursion
	into table_array

2015-04-02  Dirk Eddelbuettel  <edd@debian.org>

	* src/parse.cpp: Now with nested arrays

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

	* src/parse.cpp: Arrays are now 'flattened' into vectors

2015-03-31  Dirk Eddelbuettel  <edd@debian.org>

	* src/parse.cpp: Basic array functionality; nested tables; basic
	value types, 'verbose' flag

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

	* src/parse.cpp: Beginnings of package; use StretchyList
