Skip to content

Commit

Permalink
v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed Oct 27, 2022
1 parent 705f0a4 commit 44073e0
Show file tree
Hide file tree
Showing 76 changed files with 243 additions and 254 deletions.
Binary file modified .devel/sphinx/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified .devel/sphinx/_build/doctrees/news.doctree
Binary file not shown.
Binary file modified .devel/sphinx/_build/doctrees/rapi/sprintf.doctree
Binary file not shown.
Binary file modified .devel/sphinx/_build/doctrees/rapi/strptime.doctree
Binary file not shown.
6 changes: 5 additions & 1 deletion .devel/sphinx/_build/html/_sources/news.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
> see https://github.com/gagolews/stringx/issues.


## 0.2.4 (2022-10-27)

* [BUGFIX] Fixed failing checks/tests due to some updates in R-devel.


## 0.2.3 (2022-10-13)

* [BUGFIX] Fixed failing checks/tests.
* [BUGFIX] Fixed failing checks/tests due to some updates in R-devel.


## 0.2.2 (2021-09-03)
Expand Down
7 changes: 1 addition & 6 deletions .devel/sphinx/_build/html/_sources/rapi/sprintf.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Related function(s): [`paste`](paste.md), [`strrep`](strrep.md), [`strtrim`](str


```r
# UTF-8 number of bytes vs. Unicode code point width:
# UTF-8 number of bytes vs Unicode code point width:
l <- c("e", "e\u00b2", "\u03c0", "\u03c0\u00b2", "\U0001f602\U0001f603")
r <- c(exp(1), exp(2), pi, pi^2, NaN)
cat(base::sprintf("%8s=%+.3f", l, r), sep="\n")
Expand All @@ -86,9 +86,4 @@ cat(stringx::sprintf("%8s=%+.3f", l, r), sep="\n")
## π=+3.142
## π²=+9.870
## 😂😃= NaN
# coercion of the same argument to different types:
stringx::printf(c("UNIX time %1$f is %1$s.", "%1$s is %1$f UNIX time."),
Sys.time())
## UNIX time 1665630159.556000 is 2022-10-13T14:02:39+1100.
## 2022-10-13T14:02:39+1100 is 1665630159.556000 UNIX time.
```
20 changes: 10 additions & 10 deletions .devel/sphinx/_build/html/_sources/rapi/strptime.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -135,26 +135,26 @@ Related function(s): [`sprintf`](sprintf.md), [`ISOdatetime`](ISOdatetime.md)

```r
strftime(Sys.time()) # default format - ISO 8601
## [1] "2022-10-13T14:02:40+1100"
## [1] "2022-10-27T13:27:57+1100"
f <- c("date_full", "%Y-%m-%d", "date_relative_short", "datetime_full")
strftime(Sys.time(), f) # current default locale
## [1] "Thursday, October 13, 2022"
## [2] "2022-10-13"
## [1] "Thursday, October 27, 2022"
## [2] "2022-10-27"
## [3] "today"
## [4] "Thursday, October 13, 2022 at 2:02:40 PM Australian Eastern Daylight Time"
## [4] "Thursday, October 27, 2022 at 1:27:57 PM Australian Eastern Daylight Time"
strftime(Sys.time(), f, locale="de_DE")
## [1] "Donnerstag, 13. Oktober 2022"
## [2] "2022-10-13"
## [1] "Donnerstag, 27. Oktober 2022"
## [2] "2022-10-27"
## [3] "heute"
## [4] "Donnerstag, 13. Oktober 2022 um 14:02:40 Ostaustralische Sommerzeit"
## [4] "Donnerstag, 27. Oktober 2022 um 13:27:57 Ostaustralische Sommerzeit"
strftime(Sys.time(), "date_short", locale="en_IL@calendar=hebrew")
## [1] "18 Tishri 5783"
## [1] "2 Heshvan 5783"
strptime("1970-01-01 00:00:00", "%Y-%m-%d %H:%M:%S", tz="GMT")
## [1] "1970-01-01T00:00:00+0000"
strptime("1970-01-01", "%Y-%m-%d") # missing time info replaced with current
## [1] "1970-01-01T14:02:40+1000"
## [1] "1970-01-01T13:27:57+1000"
strptime("14 Nisan 5703", "date_short", locale="en_IL@calendar=hebrew")
## [1] "1943-04-19T14:02:40+1000"
## [1] "1943-04-19T13:27:57+1000"
as.POSIXxt("1970-01-01")
## [1] "1970-01-01T00:00:00+1000"
as.POSIXxt("1970/01/01 12:00")
Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/_static/documentation_options.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var DOCUMENTATION_OPTIONS = {
URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
VERSION: '0.2.3',
VERSION: '0.2.4',
LANGUAGE: 'en',
COLLAPSE_INDEX: false,
BUILDER: 'html',
Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -180,7 +180,7 @@ <h1 id="index">Index</h1>

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -514,7 +514,7 @@ <h1>stringx: Drop-in replacements for base R string functions powered by stringi

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
51 changes: 29 additions & 22 deletions .devel/sphinx/_build/html/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -129,13 +129,14 @@
<li class="toctree-l1"><a class="reference external" href="https://github.com/gagolews/stringx/issues">Bug Tracker and Feature Suggestions</a></li>
<li class="toctree-l1"><a class="reference external" href="https://cran.r-project.org/package=stringx">CRAN Entry</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">What Is New in <em>stringx</em></a><ul>
<li class="toctree-l2"><a class="reference internal" href="#id1">0.2.3 (2022-10-13)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id2">0.2.2 (2021-09-03)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id3">0.2.1 (2021-08-27)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id4">0.1.3 (2021-08-05)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id5">0.1.2 (2021-07-27)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id6">0.1.1 (2021-07-15)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id7">0.0.0 (2021-05-07)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id1">0.2.4 (2022-10-27)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id2">0.2.3 (2022-10-13)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id3">0.2.2 (2021-09-03)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id4">0.2.1 (2021-08-27)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id5">0.1.3 (2021-08-05)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id6">0.1.2 (2021-07-27)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id7">0.1.1 (2021-07-15)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id8">0.0.0 (2021-05-07)</a></li>
</ul>
</li>
</ul>
Expand Down Expand Up @@ -184,19 +185,25 @@ <h1>What Is New in <em>stringx</em><a class="headerlink" href="#what-is-new-in-s
see https://github.com/gagolews/stringx/issues.</p>
</div></blockquote>
<section id="id1">
<h2>0.2.3 (2022-10-13)<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
<h2>0.2.4 (2022-10-27)<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[BUGFIX] Fixed failing checks/tests.</p></li>
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R-devel.</p></li>
</ul>
</section>
<section id="id2">
<h2>0.2.2 (2021-09-03)<a class="headerlink" href="#id2" title="Permalink to this heading"></a></h2>
<h2>0.2.3 (2022-10-13)<a class="headerlink" href="#id2" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[DOCUMENTATION] ICU Project site has been moved to <a class="reference external" href="https://icu.unicode.org/">https://icu.unicode.org/</a>.</p></li>
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R-devel.</p></li>
</ul>
</section>
<section id="id3">
<h2>0.2.1 (2021-08-27)<a class="headerlink" href="#id3" title="Permalink to this heading"></a></h2>
<h2>0.2.2 (2021-09-03)<a class="headerlink" href="#id3" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[DOCUMENTATION] ICU Project site has been moved to <a class="reference external" href="https://icu.unicode.org/">https://icu.unicode.org/</a>.</p></li>
</ul>
</section>
<section id="id4">
<h2>0.2.1 (2021-08-27)<a class="headerlink" href="#id4" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[BACKWARD INCOMPATIBILITY, BUGFIX] #7: Dates without times are now always
treated as being at midnight in the local (default) time zone.</p></li>
Expand All @@ -210,21 +217,21 @@ <h2>0.2.1 (2021-08-27)<a class="headerlink" href="#id3" title="Permalink to this
<code class="docutils literal notranslate"><span class="pre">c.POSIXxt</span></code>, <code class="docutils literal notranslate"><span class="pre">rep.POSIXxt</span></code>, <code class="docutils literal notranslate"><span class="pre">seq.POSIXxt</span></code>.</p></li>
</ul>
</section>
<section id="id4">
<h2>0.1.3 (2021-08-05)<a class="headerlink" href="#id4" title="Permalink to this heading"></a></h2>
<section id="id5">
<h2>0.1.3 (2021-08-05)<a class="headerlink" href="#id5" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[BUGFIX] #4: Fixed failing check with ICU 55.</p></li>
<li><p>[BUGFIX] #5: Fixed failing check under POSIX/C locale.</p></li>
</ul>
</section>
<section id="id5">
<h2>0.1.2 (2021-07-27)<a class="headerlink" href="#id5" title="Permalink to this heading"></a></h2>
<section id="id6">
<h2>0.1.2 (2021-07-27)<a class="headerlink" href="#id6" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>First <a class="reference external" href="https://cran.r-project.org/package=stringx">CRAN</a> release.</p></li>
</ul>
</section>
<section id="id6">
<h2>0.1.1 (2021-07-15)<a class="headerlink" href="#id6" title="Permalink to this heading"></a></h2>
<section id="id7">
<h2>0.1.1 (2021-07-15)<a class="headerlink" href="#id7" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[GENERAL] <a class="reference external" href="https://stringx.gagolewski.com">On-line manual</a> is now available.</p></li>
<li><p>[GENERAL] Using <a class="reference external" href="https://realtest.gagolewski.com"><em>realtest</em></a>
Expand Down Expand Up @@ -266,8 +273,8 @@ <h2>0.1.1 (2021-07-15)<a class="headerlink" href="#id6" title="Permalink to this
<code class="docutils literal notranslate"><span class="pre">regexec</span></code>, <code class="docutils literal notranslate"><span class="pre">gregexec</span></code>.</p></li>
</ul>
</section>
<section id="id7">
<h2>0.0.0 (2021-05-07)<a class="headerlink" href="#id7" title="Permalink to this heading"></a></h2>
<section id="id8">
<h2>0.0.0 (2021-05-07)<a class="headerlink" href="#id8" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>The <em>stringx</em> project has been started.</p></li>
</ul>
Expand All @@ -286,7 +293,7 @@ <h2>0.0.0 (2021-05-07)<a class="headerlink" href="#id7" title="Permalink to this

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/objects.inv
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Sphinx inventory version 2
# Project: stringx
# Version: 0.2.3
# Version: 0.2.4
# The remainder of this file is compressed using zlib.
xڅ��n�0 ��y
�@6����v(�-A\ �A��ث- ��o?R��8v�K�?}�I�9�iL�T�:` �op��/5u-<����UVK�MD ߘӥ�oݺ1�ѵJc�����
Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi.html
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -203,7 +203,7 @@ <h1>R Package <em>stringx</em> Reference<a class="headerlink" href="#r-package-s

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/ISOdatetime.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -285,7 +285,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/about_stringx.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -212,7 +212,7 @@ <h2>See Also<a class="headerlink" href="#see-also" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/chartr.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -301,7 +301,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/constants.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -289,7 +289,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/gregexpr.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -462,7 +462,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/gregextr.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -355,7 +355,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/grepl.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -332,7 +332,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
4 changes: 2 additions & 2 deletions .devel/sphinx/_build/html/rapi/gsub.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@


<div class="version">
0.2.3
0.2.4
</div>


Expand Down Expand Up @@ -324,7 +324,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2022, Marek Gagolewski.
<span class="lastupdated">Last updated on 2022-10-13T14:02:44+1100.
<span class="lastupdated">Last updated on 2022-10-27T13:28:01+1100.
</span></p>
</div>

Expand Down
Loading

0 comments on commit 44073e0

Please sign in to comment.