diff --git a/DESCRIPTION b/DESCRIPTION index fb09d2fa9..e5b46e79a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: recipes Title: Preprocessing Tools to Create Design Matrices -Version: 0.1.9 +Version: 0.1.10 Authors@R: c( person(given = "Max", family = "Kuhn", email = "max@rstudio.com", role = c("aut", "cre")), person(given = "Hadley", family = "Wickham", email = "hadley@rstudio.com", role = c("aut")), @@ -11,7 +11,7 @@ Description: An extensible framework to create and preprocess be estimated from an initial data set and then applied to other data sets. The resulting design matrices can then be used as inputs into statistical or machine learning models. -URL: https://github.com/tidymodels/recipes +URL: https://github.com/tidymodels/recipes, https://tidymodels.github.io/recipes/ BugReports: https://github.com/tidymodels/recipes/issues Depends: R (>= 3.1), diff --git a/NEWS.md b/NEWS.md index 7bf87f6de..65b97f3a3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# recipes 0.1.9.9000 +# recipes 0.1.10 ## Breaking Changes @@ -8,6 +8,8 @@ * Added flexible naming options for new columns created by `step_depth()` and `step_classdist()` (#262). +* Small changes for base R's `stringsAsFactors` change. + # recipes 0.1.9 * Delayed S3 method registration for `tune::tunable()` methods that live in recipes will now work correctly on R >=4.0.0 ([#439](https://github.com/tidymodels/recipes/issues/439), [tidymodels/tune#146](https://github.com/tidymodels/tune/issues/146)). diff --git a/man/check_cols.Rd b/man/check_cols.Rd index c6aba0b71..9eda7d1cf 100644 --- a/man/check_cols.Rd +++ b/man/check_cols.Rd @@ -48,8 +48,8 @@ step that will check if all the columns of the training frame are present in the new data. } \details{ -This check will break the \code{bake} function if any of the checked -columns does contain \code{NA} values. If the check passes, nothing is changed +This check will break the \code{bake} function if any of the specified +columns is not present in the data. If the check passes, nothing is changed to the data. } \examples{