Skip to content

Commit

Permalink
Merge pull request #400 from tidymodels/rc-1-1-1
Browse files Browse the repository at this point in the history
RC 1.1.1
  • Loading branch information
hfrick authored Dec 8, 2022
2 parents 489d979 + 96ab53d commit 3afa146
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 30 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

Expand All @@ -39,7 +39,7 @@ jobs:

- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/[email protected].4
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
clean: false
branch: gh-pages
Expand Down
11 changes: 5 additions & 6 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
Package: rsample
Title: General Resampling Infrastructure
Version: 1.1.0.9000
Version: 1.1.1
Authors@R: c(
person("Hannah", "Frick", , "hannah@rstudio.com", role = c("aut", "cre"),
person("Hannah", "Frick", , "hannah@posit.co", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-6049-5258")),
person("Fanny", "Chow", , "[email protected]", role = "aut"),
person("Max", "Kuhn", , "max@rstudio.com", role = "aut"),
person("Max", "Kuhn", , "max@posit.co", role = "aut"),
person("Michael", "Mahoney", , "[email protected]", role = c("aut"),
comment = c(ORCID = "0000-0003-2402-304X")),
person("Julia", "Silge", , "julia.silge@rstudio.com", role = c("aut"),
person("Julia", "Silge", , "julia.silge@posit.co", role = c("aut"),
comment = c(ORCID = "0000-0002-3671-836X")),
person("Hadley", "Wickham", , "hadley@rstudio.com", role = "aut"),
person("Hadley", "Wickham", , "hadley@posit.co", role = "aut"),
person("Posit Software, PBC", role = c("cph", "fnd"))
)
Maintainer: Hannah Frick <[email protected]>
Description: Classes and functions to create and summarize different types
of resampling objects (e.g. bootstrap, cross-validation).
License: MIT + file LICENSE
Expand Down
16 changes: 8 additions & 8 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# rsample (development version)
# rsample 1.1.1

* Removed an overly strict test in preparation for dplyr 1.1.0 (#380).
* All grouped resampling functions (`group_vfold_cv()`, `group_mc_cv()`, `group_initial_split()` and `group_validation_split()`, and `group_bootstraps()`) now support stratification. Strata must be constant within each group (@mikemahoney218, #317, #360, #363, #364, #365).

* All grouped resampling functions (`group_vfold_cv()`, `group_mc_cv()`, `group_initial_split()` and `group_validation_split()`, and `group_bootstraps()`) now support stratification. Strata must be constant within each group (#317, #360, #363, #364, #365).
* Added a new function, `clustering_cv()`, for blocked cross-validation in various predictor spaces. This is a very flexible function, taking arguments to both `distance_function` and `cluster_function`, allowing it to be used for spatial clustering as well as potentially phylogenetic and other forms of clustering (@mikemahoney218, #351).

* `group_bootstraps()` now warns if resampling returns any empty assessment sets (previously had been an error) (#356) (#357).
* `bootstraps()` and `group_bootstraps()` now warn if resampling returns any empty assessment sets. Previously, `bootstraps()` was silent while `group_bootstraps()` errored (@mikemahoney218, #356, #357).

* `bootstraps()` now warns if resampling returns any empty assessment sets (previously had no message or warning) (#356) (#357).
* The assessment set of `validation_time_split()` now also contains the lagged observations (#376).

* Added a new function, `clustering_cv()`, for blocked cross-validation in various predictor spaces. This is a very flexible function, taking arguments to both `distance_function` and `cluster_function`, allowing it to be used for spatial clustering as well as potentially phylogenetic and other forms of clustering (#351).
* The new helper `get_rsplit()` lets you conveniently access the `rsplit` objects inside an `rset` objects (@mikemahoney218, #399).

* The assessment set of `validation_time_split()` now also contains the lagged observations (#376).
* The result of `initial_time_split()` now has its own subclass `"initial_time_split"`, in addition to existing classes (#397).

* The dependency on the ellipsis package has been removed (#393).

* The result of `initial_time_split()` now has its own subclass `"initial_time_split"`, in addition to existing classes (#397).
* Removed an overly strict test in preparation for dplyr 1.1.0 (#380).


# rsample 1.1.0
Expand Down
16 changes: 2 additions & 14 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
## Release Summary

This is the 12th CRAN release of rsample. This release harmonizes object attributes and adds support for grouped resampling.

## R CMD check results

0 errors | 0 warnings | 0 notes

## revdepcheck results

We checked 44 reverse dependencies (43 from CRAN + 1 from Bioconductor), comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 0 packages
# v 1.1.1

This version includes a maintainer change from Julia Silge to Hannah Frick.

0 comments on commit 3afa146

Please sign in to comment.