Skip to content

Commit 139360d

Browse files
authored
0.2.0 RC (#474)
* changes for noSuggests special check * version bump * version bumps
1 parent c4aa15c commit 139360d

File tree

5 files changed

+36
-36
lines changed

5 files changed

+36
-36
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ vignettes/articles/Classification_cache/*
1212
R/plots.R
1313
tests/testthat/Rplots.pdf
1414
docs
15+
revdep

DESCRIPTION

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: tune
22
Title: Tidy Tuning Tools
3-
Version: 0.1.6.9003
3+
Version: 0.2.0
44
Authors@R: c(
55
person("Max", "Kuhn", , "[email protected]", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2402-136X")),
@@ -21,22 +21,22 @@ Imports:
2121
dials (>= 0.0.10),
2222
dplyr (>= 1.0.0),
2323
foreach,
24-
generics (>= 0.1.0.9000),
24+
generics (>= 0.1.2),
2525
ggplot2,
2626
glue,
2727
GPfit,
28-
hardhat (>= 0.1.6.9001),
28+
hardhat (>= 0.2.0),
2929
lifecycle (>= 1.0.0),
30-
parsnip (>= 0.1.7.9005),
30+
parsnip (>= 0.2.0),
3131
purrr (>= 0.3.2),
32-
recipes (>= 0.1.17.9001),
32+
recipes (>= 0.2.0),
3333
rlang (>= 0.4.0),
3434
rsample (>= 0.0.9),
3535
tibble (>= 3.1.0),
3636
tidyr,
3737
vctrs (>= 0.3.0),
3838
withr,
39-
workflows (>= 0.2.4.9002),
39+
workflows (>= 0.2.5),
4040
yardstick (>= 0.0.7)
4141
Suggests:
4242
covr,
@@ -46,11 +46,6 @@ Suggests:
4646
spelling,
4747
testthat (>= 3.0.0),
4848
xml2
49-
Remotes:
50-
tidymodels/hardhat,
51-
tidymodels/parsnip,
52-
tidymodels/recipes,
53-
tidymodels/workflows
5449
Config/Needs/website:
5550
pkgdown,
5651
tidymodels,

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tune (development version)
1+
# tune 0.2.0
22

33
* The `.notes` column now contains information on the type of note (error or warning), the location where it occurred, and the note. Printing a tune result has different output describing the notes.
44

R/merge.R

+14-12
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,23 @@
5050
#'
5151
#' merge(pca_rec, pca_grid)
5252
#'
53-
#' library(parsnip)
54-
#' library(dials)
55-
#' data(hpc_data, pacakge = "modeldata")
53+
#' if (rlang::is_installed("modeldata")) {
54+
#' library(parsnip)
55+
#' library(dials)
56+
#' data(hpc_data, package = "modeldata")
5657
#'
57-
#' xgb_mod <-
58-
#' boost_tree(trees = tune(), min_n = tune()) %>%
59-
#' set_engine("xgboost")
58+
#' xgb_mod <-
59+
#' boost_tree(trees = tune(), min_n = tune()) %>%
60+
#' set_engine("xgboost")
6061
#'
61-
#' set.seed(254)
62-
#' xgb_grid <-
63-
#' extract_parameter_set_dials(xgb_mod) %>%
64-
#' finalize(hpc_data) %>%
65-
#' grid_max_entropy(size = 3)
62+
#' set.seed(254)
63+
#' xgb_grid <-
64+
#' extract_parameter_set_dials(xgb_mod) %>%
65+
#' finalize(hpc_data) %>%
66+
#' grid_max_entropy(size = 3)
6667
#'
67-
#' merge(xgb_mod, xgb_grid)
68+
#' merge(xgb_mod, xgb_grid)
69+
#' }
6870
#' }
6971
#' @export
7072
merge.recipe <- function(x, y, ...) {

man/merge.recipe.Rd

+14-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)