Skip to content

Commit 55039fc

Browse files
committed
officially moving to version 0.3.0
1 parent ed54148 commit 55039fc

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: janitor
22
Title: Simple Tools for Examining and Cleaning Dirty Data
3-
Version: 0.2.1.9000
3+
Version: 0.3.0
44
Authors@R: c(person("Sam", "Firke", email = "[email protected]", role = c("aut", "cre")),
55
person("Chris", "Haid", email = "[email protected]", role = "ctb"),
66
person("Ryan", "Knight", email = "[email protected]", role = "ctb"))

NEWS.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
NEWS
22
====
33

4-
# janitor 0.2.1.9000 (in progress)
4+
# janitor 0.3.0 (Release date: 2017-05-06)
5+
6+
## Release summary
7+
8+
The primary purpose of this release is to maintain accuracy given the changes to the dplyr package, upon which janitor is built, in dplyr version 0.6.0. This update also contains a number of minor improvements.
9+
10+
**Critical: if you update the package `dplyr` to version 0.6.0, you *must* update janitor to version 0.3.0 to ensure accurate results from janitor's `tabyl()` function.** This is due to a change in the behavior of dplyr's `_join` functions (*discussed in [#111)](https://github.com/sfirke/janitor/issues/111)*.
11+
12+
janitor 0.3.0 is compatible with this new version of dplyr as well as old versions of dplyr back to 0.5.0. That is, updating janitor to 0.3.0 does not necessitate an update to dplyr 0.6.0.
13+
514

615
## Breaking changes
7-
* The first argument of `adorn_crosstab()` is now "dat" instead of "crosstab" (since the function can be called on any data.frame, not just a result of `crosstab()`)
816
* The functions `add_totals_row` and `add_totals_col` were combined into a single function, `adorn_totals()`. [(#57)](https://github.com/sfirke/janitor/issues/57). The `add_totals_` functions are now deprecated and should not be used.
17+
* The first argument of `adorn_crosstab()` is now "dat" instead of "crosstab" (indicating that the function can be called on any data.frame, not just a result of `crosstab()`)
918

1019
## Features
1120

12-
1321
### Major
1422

1523
* Exported the `%>%` pipe from magrittr [(#107)](https://github.com/sfirke/janitor/issues/107).
@@ -20,16 +28,17 @@ NEWS
2028
* `add_totals_row()` and `add_totals_col()` - replaced by the single function `adorn_totals()`
2129

2230
### Minor
23-
* `adorn_totals()` and `ns_to_percents()` can now be called on data.frames that have non-numeric columns beyond the first one (they will be ignored) [(#57)](https://github.com/sfirke/janitor/issues/57)
24-
* `adorn_totals("col")` retains factor class in 1st column if that was the input
31+
* `adorn_totals()` and `ns_to_percents()` can now be called on data.frames that have non-numeric columns beyond the first one (those columns will be ignored) [(#57)](https://github.com/sfirke/janitor/issues/57)
32+
* `adorn_totals("col")` retains factor class in 1st column if 1st column in the input data.frame was a factor
2533

2634
## Bug fixes
27-
* Long variable names with spaces no longer break `tabyl()` and `crosstab()` [(#87)](https://github.com/sfirke/janitor/issues/87)
2835
* `clean_names()` now handles leading spaces [(#85)](https://github.com/sfirke/janitor/issues/85)
2936
* `adorn_crosstab()` and `ns_to_percents()` work on a 2-column data.frame [(#89)](https://github.com/sfirke/janitor/issues/89)
3037
* `adorn_totals()` now works on a grouped tibble [(#97)](https://github.com/sfirke/janitor/issues/97)
38+
* Long variable names with spaces no longer break `tabyl()` and `crosstab()` [(#87)](https://github.com/sfirke/janitor/issues/87)
3139
* An `NA_` column in the result of a `crosstab()` will appear at the last column position [(#109)](https://github.com/sfirke/janitor/issues/109)
3240

41+
3342
# janitor 0.2.1 (Release date: 2016-10-30)
3443

3544
## Bug fixes

0 commit comments

Comments
 (0)