Skip to content

Commit c918cc8

Browse files
committed
v0.2.2
1 parent 9660492 commit c918cc8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+148
-126
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: stringx
22
Type: Package
33
Title: Drop-in Replacements for Base String Functions Powered by 'stringi'
4-
Version: 0.2.1
5-
Date: 2021-08-27
4+
Version: 0.2.2
5+
Date: 2021-09-03
66
Authors@R: c(
77
person("Marek", "Gagolewski",
88
role = c("aut", "cre", "cph"),

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
> see https://github.com/gagolews/stringx/issues.
66

77

8+
## 0.2.2 (2021-09-03)
9+
10+
* [DOCUMENTATION] ICU Project site has been moved to <https://icu.unicode.org/>.
11+
12+
813
## 0.2.1 (2021-08-27)
914

1015
* [BACKWARD INCOMPATIBILITY, BUGFIX] #7: Dates without times are now always

R/about_stringx.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
#' \url{https://stringi.gagolewski.com/}
3535
#'
3636
#' \emph{ICU -- International Components for Unicode},
37-
#' \url{http://site.icu-project.org/}
37+
#' \url{https://icu.unicode.org/}
3838
#'
3939
#' \emph{The Unicode Consortium},
4040
#' \url{https://home.unicode.org/}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
> this is no longer the case. This package replaces base R string functions
1111
> with ones that fully support the Unicode standards related to natural
1212
> language and date-time processing. Thanks to
13-
> [ICU (International Components for Unicode)](http://site.icu-project.org/)
13+
> [ICU (International Components for Unicode)](https://icu.unicode.org/)
1414
> and [*stringi*](https://stringi.gagolewski.com/),
1515
> they are fast, reliable, and portable across different platforms.
1616
@@ -31,7 +31,7 @@
3131
[R](https://www.r-project.org/) package for
3232
fast, consistent, convenient, and portable string/text/natural language
3333
processing in any locale that relies on
34-
[ICU – International Components for Unicode](http://site.icu-project.org/).
34+
[ICU – International Components for Unicode](https://icu.unicode.org/).
3535

3636

3737
--------------------------------------------------------------------------------

devel/sphinx/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ stringx: Drop-in replacements for base R string functions powered by stringi
1010
This package replaces base R string functions with ones that fully
1111
support the Unicode standards related to natural language
1212
and date-time processing.
13-
Thanks to `ICU <http://site.icu-project.org/>`_
13+
Thanks to `ICU <https://icu.unicode.org/>`_
1414
(International Components for Unicode) and
1515
`stringi <https://stringi.gagolewski.com/>`_,
1616
they are fast, reliable, and portable across different platforms.
@@ -89,7 +89,7 @@ Also, a few new, useful operations are introduced.
8989
`R <https://www.r-project.org/>`_ package for
9090
fast, consistent, convenient, and portable string/text/natural language
9191
processing in any locale that relies on
92-
`ICU – International Components for Unicode <http://site.icu-project.org/>`_.
92+
`ICU – International Components for Unicode <https://icu.unicode.org/>`_.
9393

9494
*stringx*'s source code is hosted on
9595
`GitHub <https://github.com/gagolews/stringx>`_ and official releases

devel/sphinx/news.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
> see https://github.com/gagolews/stringx/issues.
66
77

8+
## 0.2.2 (2021-09-03)
9+
10+
* [DOCUMENTATION] ICU Project site has been moved to <https://icu.unicode.org/>.
11+
12+
813
## 0.2.1 (2021-08-27)
914

1015
* [BACKWARD INCOMPATIBILITY, BUGFIX] #7: Dates without times are now always

devel/sphinx/rapi/about_stringx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
*<span class="pkg">stringi</span> Package homepage*, <https://stringi.gagolewski.com/>
1818

19-
*ICU -- International Components for Unicode*, <http://site.icu-project.org/>
19+
*ICU -- International Components for Unicode*, <https://icu.unicode.org/>
2020

2121
*The Unicode Consortium*, <https://home.unicode.org/>
2222

devel/sphinx/rapi/sprintf.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,6 @@ cat(stringx::sprintf("%8s=%+.3f", l, r), sep="\n")
8989
# coercion of the same argument to different types:
9090
stringx::printf(c("UNIX time %1$f is %1$s.", "%1$s is %1$f UNIX time."),
9191
Sys.time())
92-
## UNIX time 1630049516.470000 is 2021-08-27T17:31:56+1000.
93-
## 2021-08-27T17:31:56+1000 is 1630049516.470000 UNIX time.
92+
## UNIX time 1630628750.107000 is 2021-09-03T10:25:50+1000.
93+
## 2021-09-03T10:25:50+1000 is 1630628750.107000 UNIX time.
9494
```

devel/sphinx/rapi/strptime.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -135,26 +135,26 @@ Related function(s): [`sprintf`](sprintf.md), [`ISOdatetime`](ISOdatetime.md)
135135

136136
```r
137137
strftime(Sys.time()) # default format - ISO 8601
138-
## [1] "2021-08-27T17:31:57+1000"
138+
## [1] "2021-09-03T10:25:50+1000"
139139
f <- c("date_full", "%Y-%m-%d", "date_relative_short", "datetime_full")
140140
strftime(Sys.time(), f) # current default locale
141-
## [1] "Friday, 27 August 2021"
142-
## [2] "2021-08-27"
143-
## [3] "today"
144-
## [4] "Friday, 27 August 2021 at 5:31:57 pm Australian Eastern Standard Time"
141+
## [1] "Friday, 3 September 2021"
142+
## [2] "2021-09-03"
143+
## [3] "today"
144+
## [4] "Friday, 3 September 2021 at 10:25:50 am Australian Eastern Standard Time"
145145
strftime(Sys.time(), f, locale="de_DE")
146-
## [1] "Freitag, 27. August 2021"
147-
## [2] "2021-08-27"
148-
## [3] "heute"
149-
## [4] "Freitag, 27. August 2021 um 17:31:57 Ostaustralische Normalzeit"
146+
## [1] "Freitag, 3. September 2021"
147+
## [2] "2021-09-03"
148+
## [3] "heute"
149+
## [4] "Freitag, 3. September 2021 um 10:25:50 Ostaustralische Normalzeit"
150150
strftime(Sys.time(), "date_short", locale="en_IL@calendar=hebrew")
151-
## [1] "19 Elul 5781"
151+
## [1] "26 Elul 5781"
152152
strptime("1970-01-01 00:00:00", "%Y-%m-%d %H:%M:%S", tz="GMT")
153153
## [1] "1970-01-01T00:00:00+0000"
154154
strptime("1970-01-01", "%Y-%m-%d") # missing time info replaced with current
155-
## [1] "1970-01-01T17:31:57+1000"
155+
## [1] "1970-01-01T10:25:50+1000"
156156
strptime("14 Nisan 5703", "date_short", locale="en_IL@calendar=hebrew")
157-
## [1] "1943-04-19T17:31:57+1000"
157+
## [1] "1943-04-19T10:25:50+1000"
158158
as.POSIXxt("1970-01-01")
159159
## [1] "1970-01-01T00:00:00+1000"
160160
as.POSIXxt("1970/01/01 12:00")

docs/_sources/index.rst.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ stringx: Drop-in replacements for base R string functions powered by stringi
1010
This package replaces base R string functions with ones that fully
1111
support the Unicode standards related to natural language
1212
and date-time processing.
13-
Thanks to `ICU <http://site.icu-project.org/>`_
13+
Thanks to `ICU <https://icu.unicode.org/>`_
1414
(International Components for Unicode) and
1515
`stringi <https://stringi.gagolewski.com/>`_,
1616
they are fast, reliable, and portable across different platforms.
@@ -89,7 +89,7 @@ Also, a few new, useful operations are introduced.
8989
`R <https://www.r-project.org/>`_ package for
9090
fast, consistent, convenient, and portable string/text/natural language
9191
processing in any locale that relies on
92-
`ICU – International Components for Unicode <http://site.icu-project.org/>`_.
92+
`ICU – International Components for Unicode <https://icu.unicode.org/>`_.
9393

9494
*stringx*'s source code is hosted on
9595
`GitHub <https://github.com/gagolews/stringx>`_ and official releases

0 commit comments

Comments
 (0)