Skip to content

Commit

Permalink
v0.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed May 21, 2023
1 parent 2e47b1e commit 9b52188
Show file tree
Hide file tree
Showing 72 changed files with 160 additions and 160 deletions.
Binary file modified .devel/sphinx/_build/doctrees/environment.pickle
Binary file not shown.
Binary file modified .devel/sphinx/_build/doctrees/index.doctree
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/strptime.doctree
Binary file not shown.
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/_sources/index.rst.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
stringx: Drop-in replacements for base R string functions powered by stringi
stringx: Replacements for base R string functions powered by stringi
============================================================================

.. epigraph::
Expand Down
8 changes: 4 additions & 4 deletions .devel/sphinx/_build/html/_sources/news.md.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@
> see <https://github.com/gagolews/stringx/issues>.


## 0.2.5 (2023-05-15)
## 0.2.5 (2023-05-21)

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


## 0.2.4 (2022-10-27)

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


## 0.2.3 (2022-10-13)

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


## 0.2.2 (2021-09-03)
Expand Down
24 changes: 12 additions & 12 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] "2023-05-15T10:35:28+1000"
## [1] "2023-05-21T13:43:43+1000"
f <- c("date_full", "%Y-%m-%d", "date_relative_short", "datetime_full")
strftime(Sys.time(), f) # current default locale
## [1] "Monday, 15 May 2023"
## [2] "2023-05-15"
## [3] "today"
## [4] "Monday, 15 May 2023 at 10:35:28 am Australian Eastern Standard Time"
## [1] "Sunday, 21 May 2023"
## [2] "2023-05-21"
## [3] "today"
## [4] "Sunday, 21 May 2023 at 1:43:43 pm Australian Eastern Standard Time"
strftime(Sys.time(), f, locale="de_DE")
## [1] "Montag, 15. Mai 2023"
## [2] "2023-05-15"
## [3] "heute"
## [4] "Montag, 15. Mai 2023 um 10:35:28 Ostaustralische Normalzeit"
## [1] "Sonntag, 21. Mai 2023"
## [2] "2023-05-21"
## [3] "heute"
## [4] "Sonntag, 21. Mai 2023 um 13:43:43 Ostaustralische Normalzeit"
strftime(Sys.time(), "date_short", locale="en_IL@calendar=hebrew")
## [1] "24 Iyar 5783"
## [1] "1 Sivan 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-01T10:35:28+1000"
## [1] "1970-01-01T13:43:43+1000"
strptime("14 Nisan 5703", "date_short", locale="en_IL@calendar=hebrew")
## [1] "1943-04-19T10:35:28+1000"
## [1] "1943-04-19T13:43:43+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/genindex.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h1 id="index">Index</h1>

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

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

<meta name="viewport" content="width=device-width, initial-scale=1.0" />

<title>stringx: Drop-in replacements for base R string functions powered by stringi &mdash; stringx</title>
<title>stringx: Replacements for base R string functions powered by stringi &mdash; stringx</title>



Expand Down Expand Up @@ -157,7 +157,7 @@
<div role="navigation" aria-label="Page navigation">
<ul class="wy-breadcrumbs">
<li><a href="#" class="icon icon-home" aria-label="Home"></a></li>
<li class="breadcrumb-item active">stringx: Drop-in replacements for base R string functions powered by stringi</li>
<li class="breadcrumb-item active">stringx: Replacements for base R string functions powered by stringi</li>
<li class="wy-breadcrumbs-aside">
</li>
</ul><div class="rst-breadcrumbs-buttons" role="navigation" aria-label="Sequential page navigation">
Expand All @@ -168,8 +168,8 @@
<div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article">
<div itemprop="articleBody">

<section id="stringx-drop-in-replacements-for-base-r-string-functions-powered-by-stringi">
<h1>stringx: Drop-in replacements for base R string functions powered by stringi<a class="headerlink" href="#stringx-drop-in-replacements-for-base-r-string-functions-powered-by-stringi" title="Permalink to this heading"></a></h1>
<section id="stringx-replacements-for-base-r-string-functions-powered-by-stringi">
<h1>stringx: Replacements for base R string functions powered by stringi<a class="headerlink" href="#stringx-replacements-for-base-r-string-functions-powered-by-stringi" title="Permalink to this heading"></a></h1>
<blockquote class="epigraph">
<div><p>English is the native language for only 5% of the World population.
Also, only 17% of us can understand this text. Moreover, the Latin alphabet
Expand Down Expand Up @@ -519,7 +519,7 @@ <h1>stringx: Drop-in replacements for base R string functions powered by stringi

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
12 changes: 6 additions & 6 deletions .devel/sphinx/_build/html/news.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
<li class="toctree-l1"><a class="reference external" href="https://deepr.gagolewski.com">Deep R Programming</a></li>
<li class="toctree-l1"><a class="reference external" href="https://stringi.gagolewski.com/">stringi</a></li>
<li class="toctree-l1 current"><a class="current reference internal" href="#">Changelog</a><ul>
<li class="toctree-l2"><a class="reference internal" href="#id1">0.2.5 (2023-05-15)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id1">0.2.5 (2023-05-21)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id2">0.2.4 (2022-10-27)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id3">0.2.3 (2022-10-13)</a></li>
<li class="toctree-l2"><a class="reference internal" href="#id4">0.2.2 (2021-09-03)</a></li>
Expand Down Expand Up @@ -187,21 +187,21 @@ <h1>Changelog<a class="headerlink" href="#changelog" title="Permalink to this he
see <a class="reference external" href="https://github.com/gagolews/stringx/issues">https://github.com/gagolews/stringx/issues</a>.</p>
</div></blockquote>
<section id="id1">
<h2>0.2.5 (2023-05-15)<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
<h2>0.2.5 (2023-05-21)<a class="headerlink" href="#id1" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R-devel.</p></li>
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R.</p></li>
</ul>
</section>
<section id="id2">
<h2>0.2.4 (2022-10-27)<a class="headerlink" href="#id2" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R-devel.</p></li>
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R.</p></li>
</ul>
</section>
<section id="id3">
<h2>0.2.3 (2022-10-13)<a class="headerlink" href="#id3" title="Permalink to this heading"></a></h2>
<ul class="simple">
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R-devel.</p></li>
<li><p>[BUGFIX] Fixed failing checks/tests due to some updates in R.</p></li>
</ul>
</section>
<section id="id4">
Expand Down Expand Up @@ -301,7 +301,7 @@ <h2>0.0.0 (2021-05-07)<a class="headerlink" href="#id9" title="Permalink to this

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
Binary file modified .devel/sphinx/_build/html/objects.inv
Binary file not shown.
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi.html
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ <h1>R Package <em>stringx</em> Reference<a class="headerlink" href="#r-package-s

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
8 changes: 4 additions & 4 deletions .devel/sphinx/_build/html/rapi/ISOdatetime.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="next" title="about_stringx: Drop-in Replacements for Base String Functions Powered by Stringi" href="about_stringx.html" />
<link rel="prev" title="stringx: Drop-in replacements for base R string functions powered by stringi" href="../index.html" />
<link rel="prev" title="stringx: Replacements for base R string functions powered by stringi" href="../index.html" />
</head>

<body class="wy-body-for-nav">
Expand Down Expand Up @@ -172,7 +172,7 @@
<li class="wy-breadcrumbs-aside">
</li>
</ul><div class="rst-breadcrumbs-buttons" role="navigation" aria-label="Sequential page navigation">
<a href="../index.html" class="btn btn-neutral float-left" title="stringx: Drop-in replacements for base R string functions powered by stringi" accesskey="p"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="../index.html" class="btn btn-neutral float-left" title="stringx: Replacements for base R string functions powered by stringi" accesskey="p"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="about_stringx.html" class="btn btn-neutral float-right" title="about_stringx: Drop-in Replacements for Base String Functions Powered by Stringi" accesskey="n">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
</div>
<hr/>
Expand Down Expand Up @@ -278,15 +278,15 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

</div>
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
<a href="../index.html" class="btn btn-neutral float-left" title="stringx: Drop-in replacements for base R string functions powered by stringi" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="../index.html" class="btn btn-neutral float-left" title="stringx: Replacements for base R string functions powered by stringi" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
<a href="about_stringx.html" class="btn btn-neutral float-right" title="about_stringx: Drop-in Replacements for Base String Functions Powered by Stringi" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
</div>

<hr/>

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/about_stringx.html
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ <h2>See Also<a class="headerlink" href="#see-also" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/chartr.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/constants.html
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/gregexpr.html
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/gregextr.html
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/grepl.html
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/gsub.html
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/nchar.html
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/paste.html
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/sort.html
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/sprintf.html
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/startswith.html
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion .devel/sphinx/_build/html/rapi/strcoll.html
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ <h2>Examples<a class="headerlink" href="#examples" title="Permalink to this head

<div role="contentinfo">
<p>&#169; Copyright 2021-2023, Marek Gagolewski.
<span class="lastupdated">Last updated on 2023-05-15T10:35:30+1000.
<span class="lastupdated">Last updated on 2023-05-21T13:43:45+1000.
</span></p>
</div>

Expand Down
Loading

0 comments on commit 9b52188

Please sign in to comment.