forked from eddelbuettel/anytime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
126 lines (76 loc) · 3.83 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
2016-09-15 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.0.2
* inst/NEWS.Rd: Ditto
2016-09-14 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Roll minor version and date
* DESCRIPTION (Imports): Relax min. version costraint on Rcpp
* NAMESPACE: Make getFormats() and addFormat() public
* src/anytime.cpp: Added documentation for new functions getFormats()
and addFormats()
* man/getFormats.Rd: Ditto
* man/anytime-package.Rd: Mention getFormats() and addFormats()
* inst/NEWS.Rd: Added
* tests/validate.R: Loosen test removing stopifnot
* R/anytime.R (anydate): Call as.POSIXlt() before calling as.Date()
to ensure all sub-components of the tm structure are set (GH #4)
* tests/gh_issue_5.R: test case
2016-09-13 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Rolled to (interim) version 0.0.1.1
* DESCRIPTION (Title, Description): Edited to mention anydate()
* src/anytime.cpp: Refactored so that formats are now simple
string kept in vector (from which locales are built in the ctor of
a simple container class); now new formats can be added (at the
front); formats get be retrieved as well
* README.md: Add badges and CRAN installation note
2016-09-12 Dirk Eddelbuettel <[email protected]>
* DESCRIPTION (Version, Date): Release 0.0.1
* DESCRIPTION (URL, BugReports): Added
* src/anytime.cpp (anytime_cpp): Remove roxygen chunk
* R/anytime.R (anytime): Add roxygen chunk
* man/anytime.Rd: New file (replacing man/anytime_cpp.Rd)
* NAMESPACE: Do not export anytime_cpp
* R/anytime.R: Add copyright header
* R/utils.R: Ditto
* R/init.R: Ditto
2016-09-11 Dirk Eddelbuettel <[email protected]>
* R/anytime.R (anydate): New function reducing to Date
* R/anytime.R (anytime): Support factors on input
* src/anytime.cpp: Extended format list, corrected one special case,
document 'anydate' and add roxygen alias, remove some unused code
useful only for comparison, added Notesrcp: section with some caveats
* NAMESPACE: Export anydate
* tests/simpleTests.R: Expanded
* tests/simpleTests.Rout.save: Initially added for proper comparison,
deactivated in package as local format make fixed comparison difficult
* tests/allFormats.R: Added test of all formats
* tests/simpleTests.Rout.save: Initially added for proper comparison,
deactivated in package as local format make fixed comparison difficult
* tests/validate.R: Added, full-cycle conversion + comparison with R
* man/anytime-package.Rd: Rewritten and expanded
* .Rbuildignore: Do not include *.Rout.save files as default format
method will fall back to local time which we cannot override
2016-09-10 Dirk Eddelbuettel <[email protected]>
* R/init.R (.onLoad): Use Sys.timezone(), and gettz::gettz() if
available and needed, to gather and cache timezone value
* R/utils.R (getTZ): New helper function to get cached TZ value
* R/anytime.R (anytime): Use getTZ() to get default value
* tests/simpleTests.R: Use getTZ(), some extensions
* src/anytime.cpp: small tweaks to formats
* README.md: Added
2016-09-09 Dirk Eddelbuettel <[email protected]>
* .travis.yml: Added, using run.sh from Travis CI
2016-09-08 Dirk Eddelbuettel <[email protected]>
* src/anytime.cpp (cToPOSIXct): no longer exported;
(charToPOSIXct): Safer assignment for string, no longer export;
* man/charToPOSIXct.Rd: Removed
* man/cToPOSIXct.Rd: Ditto
2016-09-07 Dirk Eddelbuettel <[email protected]>
* src/anytime.cpp: Updated and expanded help texts
* man/cToPOSIXct.Rd: Ditto
* man/charToPOSIXct.Rd: Ditto
* tests/simpleTests.R: Some first (and simple) tests
2016-09-06 Dirk Eddelbuettel <[email protected]>
* R/anytime.R: Front-end R function testing for Date or POSIXt
before dispatching to C++-based converter
* DESCRIPTION (Package): First commit, using a set of files which
originated with the RcppBDT package