Skip to content

Commit 453d2e4

Browse files
committed
Prepare for release
1 parent 19a5db7 commit 453d2e4

File tree

3 files changed

+49
-26
lines changed

3 files changed

+49
-26
lines changed

NEWS.md

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,36 @@
11
# stringr 1.1.0.9000
22

3+
## API changes
4+
35
* `str_match_all()` now returns NA if an optional group doesn't match
46
(previously it returned ""). This is more consistent with `str_match()`
57
and other match failures (#134).
68

7-
* `str_order()` and `str_sort()` gain explicit `numeric` argument for sorting
8-
mixed numbers and strings.
9+
## New features
910

1011
* In `str_replace()`, `replacement` can now be a function that is called once
1112
for each match and who's return value is used to replace the match.
1213

14+
* New `str_which()` mimics `grep()` (#129).
15+
16+
* A new vignette (`vignette("regular-expressions")`) describes the
17+
details of the regular expressions supported by stringr.
18+
The main vignette (`vignette("stringr")`) has been updated to
19+
give a high-level overview of the package.
20+
21+
## Minor improvements and bug fixes
22+
23+
* `str_order()` and `str_sort()` gain explicit `numeric` argument for sorting
24+
mixed numbers and strings.
25+
1326
* `str_replace_all()` now throws an error if `replacement` is not a character
1427
vector. If `replacement` is `NA_character_` it replaces the complete string
1528
with replaces with `NA` (#124).
1629

17-
* New `str_which()` mimics `grep()` (#129).
18-
1930
* All functions that take a locale (e.g. `str_to_lower()` and `str_sort()`)
2031
default to "en" (English) to ensure that the default is consistent across
2132
platforms.
2233

23-
* A new vignette (`vignette("regular-expressions")`) describes the
24-
details of the regular expressions supported by stringr.
25-
The main vignette (`vignette("stringr")`) has been updated to
26-
give a high-level overview of the package.
27-
2834
# stringr 1.1.0
2935

3036
* Add sample datasets: `fruit`, `words` and `sentences`.

cran-comments.md

Lines changed: 33 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Test environments
2-
* local OS X install, R 3.3.0
3-
* ubuntu 12.04 (on travis-ci), R 3.3.0
2+
* local OS X install, R 3.3.2
3+
* ubuntu 12.04 (on travis-ci), R 3.3.2
44
* win-builder (devel and release)
55

66
## R CMD check results
@@ -9,21 +9,38 @@
99

1010
## Reverse dependencies
1111

12-
I have run R CMD check on the 284 downstream dependencies. (Summary at https://github.com/hadley/stringr/tree/master/revdep). I saw the following failures:
12+
I have run R CMD check on the 341 downstream dependencies.
13+
Summary at https://github.com/hadley/stringr/tree/master/revdep.
1314

14-
* Failed to install dependencies for: biomartr, GenomicTools, HydeNet, IATscores, metagear, MetaIntegrator, PepPrep, RbioRXN, TcGSA
15-
* Failed to install: aemo, EasyMARK, imager, morse, mrMLM, RcppOctave, rsgcc, sdcTable, x12GUI
16-
* afex: checking re-building of vignette outputs ... WARNING
17-
* dataone: checking tests ... ERROR
15+
I saw the following failures:
16+
17+
* Failed to install dependencies for: aslib, biomartr, GenomicTools, hoardeR, HTSSIP, HydeNet, IATscores, metagear, MetaIntegrator, NFP, nucim, PepPrep, RbioRXN, TcGSA
18+
* Failed to install: BTLLasso, CollapsABEL, data.tree, DiagrammeR, dynamichazard, EasyMARK, Fgmutils, FRESA.CAD, KoNLP, mailR, morse, mrMLM, mtconnectR, muir, packagedocs, pMineR, radiant.model, RcppOctave, RevEcoR, RJafroc, rpcdsearch, rsgcc, sdcTable, SpaDES, spatsurv, stm, subspace, templates, valr, x.ent, x12GUI
19+
* abjutils: checking tests ... ERROR
20+
* broom: checking examples ... ERROR
21+
* docxtools: checking examples ... ERROR
22+
* elementR: checking examples ... ERROR
23+
* etl: checking examples ... ERROR
1824
* fitbitScraper: checking re-building of vignette outputs ... WARNING
19-
* icd: checking Rd cross-references ... WARNING
20-
* lint: checking tests ... ERROR
21-
* modellingTools: checking examples ... ERROR
22-
* NMF: checking examples ... ERROR
25+
* futureheatwaves: checking re-building of vignette outputs ... WARNING
26+
* ggenealogy: checking examples ... ERROR
27+
* Greg: checking re-building of vignette outputs ... WARNING
28+
* highcharter: checking examples ... ERROR
29+
* imager: checking tests ... ERROR
30+
* modules: checking tests ... ERROR
31+
* narray: checking tests ... ERROR
2332
* optparse: checking re-building of vignette outputs ... WARNING
24-
* stm: checking re-building of vignette outputs ... WARNING
25-
* vows: checking examples ... ERROR
26-
27-
After carefully reading the reports, I believe that none of them are related to this release of stringr (which is quite small).
33+
* phrasemachine: checking examples ... ERROR
34+
* pixiedust: checking tests ... ERROR
35+
* RSentiment: checking re-building of vignette outputs ... WARNING
36+
* RSMET: checking examples ... ERROR
37+
* rtide: checking tests ... ERROR
38+
* simcausal: checking tests ... ERROR
39+
* stormwindmodel: checking re-building of vignette outputs ... WARNING
40+
* stplanr: checking re-building of vignette outputs ... WARNING
41+
* striprtf: checking tests ... ERROR
42+
* taxize: checking tests ... ERROR
43+
* textreuse: checking examples ... ERROR
44+
* tidyquant: checking tests ... ERROR
2845

29-
All maintainers with errors were nonetheless notified of the release on Aug 11, and again today.
46+
After carefully reading the reports, I believe that none of them are related to this release of stringr (which is reasonably small).

man/stringr-package.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)