Skip to content

Commit b36cb0d

Browse files
committed
Submit to CRAN
1 parent 1e0837b commit b36cb0d

File tree

5 files changed

+12
-13
lines changed

5 files changed

+12
-13
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
^codecov\.yml$
55
^data-raw$
66
^cran-comments\.md$
7+
^docs$

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
Package: forcats
22
Title: Tools for Working with Categorical Variables (Factors)
3-
Version: 0.1.0.9000
3+
Version: 0.1.1
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = c("aut", "cre")),
66
person("RStudio", role = "cph")
77
)
88
Description: Helpers for reordering factor levels (including moving
99
specified levels to front, ordering by first appearance, reversing, and
1010
randomly shuffling), and tools for modifying factor levels (including
11-
collapsing rare levels into other, anonymising, and manually recoding).
11+
collapsing rare levels into other, 'anonymising', and manually 'recoding').
1212
License: GPL-3
1313
Encoding: UTF-8
1414
LazyData: true

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# forcats 0.1.0.9000
1+
# forcats 0.1.1
22

33
* Minor fixes for R CMD check
44

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# forcats 🐈🐈🐈🐈
1+
# forcats
22

3-
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/forcats)](https://cran.r-project.org/package=forcats)
3+
[CRAN_Status_Badge](http://www.r-pkg.org/badges/version/forcats)](https://cran.r-project.org/package=forcats)
44
[![Travis-CI Build Status](https://travis-ci.org/hadley/forcats.svg?branch=master)](https://travis-ci.org/hadley/forcats)
55
[![Coverage Status](https://img.shields.io/codecov/c/github/hadley/forcats/master.svg)](https://codecov.io/github/hadley/forcats?branch=master)
66

@@ -34,7 +34,7 @@ Change order of levels:
3434
* [`fct_reorder()`](https://hadley.github.io/forcats/fct_reorder.html):
3535
order by summary of another value (same as `stats::reorder()`).
3636

37-
* [`fct_infreq()`](https://hadley.github.io/forcats/fct_infreq.html):
37+
* [`fct_infreq()`](https://hadley.github.io/forcats/fct_inorder.html):
3838
order by frequency.
3939

4040
* [`fct_shuffle()`](https://hadley.github.io/forcats/fct_shuffle.html):
@@ -43,15 +43,15 @@ Change order of levels:
4343
* [`fct_rev()`](https://hadley.github.io/forcats/fct_rev.html):
4444
reverse order of levels.
4545

46-
* [`fct_shift()`](https://hadley.github.io/forcats/fct_reshift.html):
46+
* [`fct_shift()`](https://hadley.github.io/forcats/fct_shift.html):
4747
shift levels to the left/right.
4848

4949
Change value of levels:
5050

5151
* [`fct_anon()`](https://hadley.github.io/forcats/fct_anon.html):
5252
anonymise factor levels.
5353

54-
* [`fct_lump()`](https://hadley.github.io/forcats/fct_relump.html):
54+
* [`fct_lump()`](https://hadley.github.io/forcats/fct_lump.html):
5555
lump rarest (or most common) levels into "other".
5656

5757
* [`fct_recode()`](https://hadley.github.io/forcats/fct_recode.html):

cran-comments.md

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This resubmission improves the package description.
1+
This is a minor release to fix a failing on R-oldrel.
22

33
----
44

@@ -9,10 +9,8 @@ This resubmission improves the package description.
99

1010
## R CMD check results
1111

12-
0 errors | 0 warnings | 1 note
13-
14-
* This is a new release.
12+
0 errors | 0 warnings | 0 notes
1513

1614
## Reverse dependencies
1715

18-
This is a new release, so there are no reverse dependencies.
16+
There are currently no reverse dependencies.

0 commit comments

Comments
 (0)