Skip to content

Commit

Permalink
Merge pull request #44 from topepo/0-4-0-RC
Browse files Browse the repository at this point in the history
changes for cran release 0.4.0
  • Loading branch information
topepo authored Feb 7, 2022
2 parents a8d93ab + 1fca3f2 commit bbbbeed
Show file tree
Hide file tree
Showing 6 changed files with 127 additions and 158 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: Cubist
Type: Package
Title: Rule- And Instance-Based Regression Modeling
Version: 0.3.0.9000
Version: 0.4.0
Authors@R: c(
person("Max", "Kuhn", , "[email protected]", c("aut", "cre")),
person("Steve", "Weston", role = "ctb"),
Expand Down Expand Up @@ -29,7 +29,7 @@ BugReports: https://github.com/topepo/Cubist/issues
License: GPL-3
LazyLoad: yes
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1.9001
RoxygenNote: 7.1.2
VignetteBuilder: knitr
Encoding: UTF-8
Biarch: true
118 changes: 118 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
# C50 0.4.0

* Build configuration changes for Windows

# C50 0.3.0

* Build configuration changes for Windows


# C50 0.2.4

* Maintenance release to fix CRAN issues by adding rmarkdown to Suggests.

* Re-wrote parts of the vignettes and added another for model tuning.


# C50 0.2.3

* Maintenance release to fix CRAN issues for GCC 10 -fno-common flag.

* `tidy_rules()` was removed since the code is now in the tidyrules package.

* Changes to better work with tibble inputs.


# C50 0.2.2

* Maintenance release to fix CRAN issues for C string buffers


# C50 0.2.1

* Fixed a bug in the code that escapes improper characters.


# C50 0.2.0

* Converted documentation to `roxygen2`.

* Revised some compiler options to reduce `R CMD check` warnings.




# C50 0.0.19

* A bug was fixed, found by Duncan Murdoch.
* A bug in predictions when sampling was used was fixed by Laurae (a random data witch/magician) \issue{1}



# C50 0.0.17


* Memory allocation bugs in the R version of the C code, which lead to segmentation faults, were fixed.



# C50 0.0.15


* A bug was fixed where the model failed if no predictors were included in the model (thanks to Gabe Gershenfeld for the find).



# C50 0.0.14


* The Windows build configuration was updated.

* Some files were synced with the C50 package.



# C50 0.0.13


* More efficient code was borrowed from the C50 package to write the data file to a string.

* A bug related to column names found by David Clifford was fixed.


# C50 0.0.12


* A bug was fixed that occurred when splits were determined in models with a categorical variable involving more than two categories (eg. "if X4 in {a, b}")

* Also, a bug was found in the variable importances calculations when a variable was used only in the conditions and not the model.

* The 'doc' directory was moved into the "vignettes" directory


# C50 0.0.11


* cubist uses a string buffer to capture the output files that would normally get saved to external files. The package was failing R CMD check only on windows because the output files were getting garbled. `s*printf` functions work differently on Windows. On Linux, they return the size that is needed to correctly print the string. On Windows, if there isn't enough space, they return -1.

* Also, work-arounds were added to the C sources because of R CMD check issues. `printf()`, `assert()` and `exist()` statements were removed or redefined.


# C50 0.0.8

* A bug was fixed for the `coef` method.



# C50 0.0.6

* The GPL version was revised to be version 3 (thanks to Ross Quinlan for the note).

* The variable usage statistics were saved to a data frame in called `object$usage`. The package vignette and help files were updated accordingly.

* When using `cubist`, if `x` was a vector or a single variable, an error occurred. This was fixed.

* The vignette was also expanded to show how caret can be used to tune the model and a technical error was corrected about the boosting algorithm (thanks again to Ross Quinlan).



2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/Cubist)](https://CRAN.R-project.org/package=Cubist)
[![Downloads](http://cranlogs.r-pkg.org/badges/Cubist)](https://CRAN.rstudio.com/package=Cubist)
[![Downloads](http://cranlogs.r-pkg.org/badges/Cubist)](https://CRAN.r-project.org/package=Cubist)
![](https://img.shields.io/badge/lifecycle-maturing-blue.svg)
[![R-CMD-check](https://github.com/topepo/Cubist/workflows/R-CMD-check/badge.svg)](https://github.com/topepo/Cubist/actions)

Expand Down
148 changes: 0 additions & 148 deletions inst/NEWS.Rd

This file was deleted.

11 changes: 5 additions & 6 deletions revdep/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,21 @@

|field |value |
|:--------|:----------------------------|
|version |R version 4.0.3 (2020-10-10) |
|version |R version 4.1.0 (2021-05-18) |
|os |macOS Catalina 10.15.7 |
|system |x86_64, darwin17.0 |
|ui |RStudio |
|language |(EN) |
|collate |en_US.UTF-8 |
|ctype |en_US.UTF-8 |
|tz |America/New_York |
|date |2021-05-10 |
|date |2022-02-04 |

# Dependencies

|package |old |new |Δ |
|:-------|:-----|:----------|:--|
|Cubist |0.2.3 |0.2.3.9000 |* |
|stringi |NA |1.6.1 |* |
|package |old |new |Δ |
|:-------|:-----|:-----|:--|
|Cubist |0.3.0 |0.4.0 |* |

# Revdeps

2 changes: 1 addition & 1 deletion revdep/cran.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## revdepcheck results

We checked 15 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
We checked 17 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.

* We saw 0 new problems
* We failed to check 0 packages
Expand Down

0 comments on commit bbbbeed

Please sign in to comment.