Skip to content

Commit f5a91d1

Browse files
committed
v1.8.4
1 parent 963e6cb commit f5a91d1

File tree

128 files changed

+528
-526
lines changed

Some content is hidden

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

128 files changed

+528
-526
lines changed

.devel/sphinx/news.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22

33

4-
## 1.8.3.9xxx (under development)
4+
## 1.8.4 (2024-05-06)
55

6-
* ...
6+
* [BUILD TIME] [BUGFIX] #508: Fixed build errors on Windows
7+
(thanks to @jeoren and @kalibera).
78

89

910
## 1.8.3 (2023-12-10)

.devel/sphinx/rapi/stri_datetime_add.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,15 @@ print(x)
6868
```
6969

7070
```
71-
## [1] "2024-07-06 11:01:45 CEST"
71+
## [1] "2024-07-06 14:48:12 CEST"
7272
```
7373

7474
```r
7575
stri_datetime_add(x, -2, units='months')
7676
```
7777

7878
```
79-
## [1] "2024-05-06 11:01:45 CEST"
79+
## [1] "2024-05-06 14:48:12 CEST"
8080
```
8181

8282
```r

.devel/sphinx/rapi/stri_datetime_fields.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ stri_datetime_fields(stri_datetime_now())
7777

7878
```
7979
## Year Month Day Hour Minute Second Millisecond WeekOfYear WeekOfMonth
80-
## 1 2024 5 6 11 1 46 92 19 2
80+
## 1 2024 5 6 14 48 12 810 19 2
8181
## DayOfYear DayOfWeek Hour12 AmPm Era
82-
## 1 127 2 11 1 2
82+
## 1 127 2 2 2 2
8383
```
8484

8585
```r
@@ -88,9 +88,9 @@ stri_datetime_fields(stri_datetime_now(), locale='@calendar=hebrew')
8888

8989
```
9090
## Year Month Day Hour Minute Second Millisecond WeekOfYear WeekOfMonth
91-
## 1 5784 8 28 11 1 46 97 35 5
91+
## 1 5784 8 28 14 48 12 814 35 5
9292
## DayOfYear DayOfWeek Hour12 AmPm Era
93-
## 1 234 2 11 1 1
93+
## 1 234 2 2 2 1
9494
```
9595

9696
```r

.devel/sphinx/rapi/stri_datetime_format.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,5 +221,5 @@ stri_datetime_format(stri_datetime_now(), 'datetime_relative_medium')
221221
```
222222

223223
```
224-
## [1] "today, 11:01:46 am"
224+
## [1] "today, 2:48:12 pm"
225225
```

.devel/sphinx/rapi/stri_locale_set.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ oldloc <- stri_locale_set('pt_BR')
5353
```
5454

5555
```
56-
## You are now working with stringi_1.8.3.9001 (pt_BR.UTF-8; ICU4C 74.1 [bundle]; Unicode 15.1)
56+
## You are now working with stringi_1.8.4 (pt_BR.UTF-8; ICU4C 74.1 [bundle]; Unicode 15.1)
5757
```
5858

5959
```r
@@ -65,7 +65,7 @@ stri_locale_set(oldloc) # restore the previous default locale
6565
```
6666

6767
```
68-
## You are now working with stringi_1.8.3.9001 (en_AU.UTF-8; ICU4C 74.1 [bundle]; Unicode 15.1)
68+
## You are now working with stringi_1.8.4 (en_AU.UTF-8; ICU4C 74.1 [bundle]; Unicode 15.1)
6969
```
7070

7171
```r

.devel/sphinx/rapi/stri_sprintf.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ stri_sprintf("UNIX time %1$f is %1$s.", Sys.time())
188188
```
189189

190190
```
191-
## [1] "UNIX time 1714986115.773750 is 2024-05-06 11:01:55.77375."
191+
## [1] "UNIX time 1714999701.996432 is 2024-05-06 14:48:21.996432."
192192
```
193193

194194
```r
@@ -213,7 +213,7 @@ stri_sprintf("%1$s is %1$f UNIX time.", Sys.time()) # re-coercion needed
213213
```
214214

215215
```
216-
## [1] "2024-05-06 11:01:55.77546 is 1714986115.775460 UNIX time."
216+
## [1] "2024-05-06 14:48:21.998135 is 1714999701.998135 UNIX time."
217217
```
218218

219219
```r

.github/workflows/r-check-other.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
config:
20-
- {os: macOS-latest, r: 'release'}
21-
- {os: macOS-latest, r: 'oldrel-4'}
20+
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
21+
- {os: ubuntu-latest, r: 'oldrel-4'}
2222
- {os: windows-latest, r: 'devel'}
2323
- {os: windows-latest, r: 'release'}
2424
- {os: windows-latest, r: 'oldrel-3'}
25-
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26-
- {os: ubuntu-latest, r: 'oldrel-4'}
25+
- {os: macOS-latest, r: 'release'}
2726

2827
env:
2928
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: stringi
2-
Version: 1.8.3.9001
2+
Version: 1.8.4
33
Date: 2024-05-06
44
Title: Fast and Portable Character String Processing Facilities
55
Description: A collection of character string/text/natural language

NEWS

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22

33

4-
## 1.8.3.9xxx (under development)
4+
## 1.8.4 (2024-05-06)
55

6-
* ...
6+
* [BUILD TIME] [BUGFIX] #508: Fixed build errors on Windows
7+
(thanks to @jeoren and @kalibera).
78

89

910
## 1.8.3 (2023-12-10)

docs/_static/documentation_options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '1.8.3.9001',
2+
VERSION: '1.8.4',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

docs/genindex.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
<a class="sidebar-brand" href="index.html">stringi</a>
159159
</span>
160160
<div class="sidebar-brand">
161-
1.8.3.9001
161+
1.8.4
162162
</div>
163163
<form class="sidebar-search-container" method="get" action="search.html" role="search">
164164
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -357,7 +357,7 @@ <h1 id="index">Index</h1>
357357
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
358358
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
359359
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
360-
Last updated on 2024-05-06T11:02:01+0200.
360+
Last updated on 2024-05-06T14:48:28+0200.
361361
This site will never display any ads: it is a non-profit project.
362362
It does not collect any data.
363363
</div>
@@ -372,7 +372,7 @@ <h1 id="index">Index</h1>
372372

373373
</aside>
374374
</div>
375-
</div><script src="_static/documentation_options.js?v=66d781fe"></script>
375+
</div><script src="_static/documentation_options.js?v=496f73d5"></script>
376376
<script src="_static/doctools.js?v=888ff710"></script>
377377
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
378378
<script src="_static/scripts/furo.js?v=32e29ea5"></script>

docs/index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<a class="sidebar-brand" href="#">stringi</a>
161161
</span>
162162
<div class="sidebar-brand">
163-
1.8.3.9001
163+
1.8.4
164164
</div>
165165
<form class="sidebar-search-container" method="get" action="search.html" role="search">
166166
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -473,7 +473,7 @@ <h1>stringi: Fast and Portable Character String Processing in R<a class="headerl
473473
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
474474
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
475475
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
476-
Last updated on 2024-05-06T11:02:01+0200.
476+
Last updated on 2024-05-06T14:48:28+0200.
477477
This site will never display any ads: it is a non-profit project.
478478
It does not collect any data.
479479
</div>
@@ -506,7 +506,7 @@ <h1>stringi: Fast and Portable Character String Processing in R<a class="headerl
506506

507507
</aside>
508508
</div>
509-
</div><script src="_static/documentation_options.js?v=66d781fe"></script>
509+
</div><script src="_static/documentation_options.js?v=496f73d5"></script>
510510
<script src="_static/doctools.js?v=888ff710"></script>
511511
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
512512
<script src="_static/scripts/furo.js?v=32e29ea5"></script>

docs/install.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<a class="sidebar-brand" href="index.html">stringi</a>
161161
</span>
162162
<div class="sidebar-brand">
163-
1.8.3.9001
163+
1.8.4
164164
</div>
165165
<form class="sidebar-search-container" method="get" action="search.html" role="search">
166166
<input class="sidebar-search" placeholder="Search" name="q" aria-label="Search">
@@ -470,7 +470,7 @@ <h2>Getting Help<a class="headerlink" href="#getting-help" title="Link to this h
470470
Some rights reserved. Licensed under <a href='https://creativecommons.org/licenses/by-nc-nd/4.0/'>CC BY-NC-ND 4.0</a>.
471471
Built with <a href="https://sphinx-doc.org/">Sphinx</a>
472472
and a customised <a href="https://github.com/pradyunsg/furo">Furo</a> theme.
473-
Last updated on 2024-05-06T11:02:01+0200.
473+
Last updated on 2024-05-06T14:48:28+0200.
474474
This site will never display any ads: it is a non-profit project.
475475
It does not collect any data.
476476
</div>
@@ -506,7 +506,7 @@ <h2>Getting Help<a class="headerlink" href="#getting-help" title="Link to this h
506506

507507
</aside>
508508
</div>
509-
</div><script src="_static/documentation_options.js?v=66d781fe"></script>
509+
</div><script src="_static/documentation_options.js?v=496f73d5"></script>
510510
<script src="_static/doctools.js?v=888ff710"></script>
511511
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
512512
<script src="_static/scripts/furo.js?v=32e29ea5"></script>

0 commit comments

Comments
 (0)