-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
111 lines (74 loc) · 2.78 KB
/
NEWS
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
# Changelog
> Note that the date-time processing functions in *stringx* are a work
> in progress. Feature requests/comments/remarks are welcome,
> see <https://github.com/gagolews/stringx/issues>.
## 0.2.8 (2024-04-09)
## 0.2.7 (2024-04-05)
* [BUGFIX] Fixed failing checks/tests due to some updates in R.
## 0.2.6 (2023-11-30)
* [BACKWARD INCOMPATIBILITY] `strptime` fills missing fields based
on today's midnight, due to a change in *stringi*-1.8.1.
* [BUGFIX] #13: Subtracting of objects of class `POSIXxt` resulted in an error.
## 0.2.5 (2023-05-21)
## 0.2.4 (2022-10-27)
## 0.2.3 (2022-10-13)
* [BUGFIX] Fixed failing checks/tests due to some updates in R.
## 0.2.2 (2021-09-03)
* [DOCUMENTATION] ICU Project site has been moved to <https://icu.unicode.org/>.
## 0.2.1 (2021-08-27)
* [BACKWARD INCOMPATIBILITY, BUGFIX] #7: Dates without times are now always
treated as being at midnight in the local (default) time zone.
* [BACKWARD INCOMPATIBILITY] Date-time functions now yield objects
of class `POSIXxt`, which extend upon `POSIXct` (and allow for custom
formatting etc.).
* [BACKWARD INCOMPATIBILITY, BUGFIX] #7: `strftime` uses the `tzone` attribute
by default.
* [NEW FEATURE] Added functions: `as.POSIXxt`, `is.POSIXxt`,
`Sys.time`, `ISOdatetime`, `ISOdate`, `Ops.POSIXxt`,
`c.POSIXxt`, `rep.POSIXxt`, `seq.POSIXxt`.
## 0.1.3 (2021-08-05)
* [BUGFIX] #4: Fixed failing check with ICU 55.
* [BUGFIX] #5: Fixed failing check under POSIX/C locale.
## 0.1.2 (2021-07-27)
* First [CRAN](https://cran.r-project.org/package=stringx) release.
## 0.1.1 (2021-07-15)
* [GENERAL] [On-line manual](https://stringx.gagolewski.com/) is now available.
* [GENERAL] Using [*realtest*](https://realtest.gagolewski.com/)
for documenting base R behaviour, unit testing, and desired outcomes.
* [NEW FEATURE] Added constants: `letters_greek`, `digits_hex`, etc.
* [NEW FEATURE] Added functions and operators:
`strcat`, `%x+%`, `%x*%`,
`chartr2`, `strtrans`,
`printf`,
`xtfrm2`,
`strftime`, `strptime`,
`strcoll`, `%x==%`, `%x!=%`, `%x<%`, `%x<=%`, `%x>%`, `%x>=%`,
`substrl`, `substrl<-`,
`sub2`, `gsub2`,
`grepl2`, `grepv2`, `grepv2<-`,
`regexpr2`, `gregexpr2`,
`regexec2`, `gregexec2`,
`gsubstrl`, `gsubstrl<-`,
`gsubstr`, `gsubstr<-`,
`regextr2`, `regextr2<-`,
`gregextr2`, `gregextr2<-`.
* [NEW FEATURE] Rewritten functions:
`paste`, `paste0`,
`strrep`,
`chartr`, `tolower`, `toupper`, `casefold`,
`sprintf`,
`strftime`, `strptime`,
`nchar`, `nzchar`,
`strtrim`,
`trimws`,
`startsWith`, `endsWith`,
`sort`,
`strwrap`,
`substr`, `substring`, `substr<-`, `substring<-`,
`strsplit`,
`sub`, `gsub`,
`grep`, `grepl`,
`regexpr`, `gregexpr`,
`regexec`, `gregexec`.
## 0.0.0 (2021-05-07)
* The *stringx* project has been started.