Skip to content

Commit 557be6c

Browse files
Merge pull request #77 from rsquaredacademy/develop
Develop
2 parents f0649f5 + 63c6514 commit 557be6c

File tree

11 files changed

+121
-71
lines changed

11 files changed

+121
-71
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: blorr
22
Type: Package
33
Title: Tools for Developing Binary Logistic Regression Models
4-
Version: 0.1.0.9000
4+
Version: 0.2.0
55
Authors@R: person("Aravind", "Hebbali", email = "hebbali.aravind@gmail.com", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0001-9220-9669"))
77
Description: Tools designed to make it easier for beginner and intermediate users to build and validate

NEWS.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
# blorr 0.2.0
2+
3+
This is a minor release to fix bugs and for other enhancements.
4+
5+
## Enhancements
6+
7+
- variable selection procedures now return the final model as an object of
8+
class `glm` ([#58](https://github.com/rsquaredacademy/blorr/issues/58))
9+
- data preparation functions of selected plots are now exported to enable end
10+
users to create customized plots and to use plotting library of their
11+
choice ([#64](https://github.com/rsquaredacademy/blorr/issues/64))
12+
- informs users about new versions ([#1](https://github.com/rsquaredacademy/blorr/issues/1))
13+
14+
## Bug Fixes
15+
16+
- tibble package breaking changes ([#74](https://github.com/rsquaredacademy/blorr/issues/74))
17+
18+
119
# blorr 0.1.0
220

321
Initial release

R/zzz.R

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
.onAttach <- function(...) {
2+
23
if (!interactive() || stats::runif(1) > 0.1) return()
34

5+
pkgs <- utils::available.packages()
6+
7+
cran_version <-
8+
pkgs %>%
9+
extract("blorr", "Version") %>%
10+
package_version()
11+
12+
local_version <- utils::packageVersion("blorr")
13+
behind_cran <- cran_version > local_version
14+
415
tips <- c(
516
"Learn more about blorr at https://github.com/rsquaredacademy/blorr/.",
617
"Use suppressPackageStartupMessages() to eliminate package startup messages.",
@@ -9,5 +20,11 @@
920
)
1021

1122
tip <- sample(tips, 1)
12-
packageStartupMessage(paste(strwrap(tip), collapse = "\n"))
23+
24+
if (behind_cran) {
25+
packageStartupMessage("A new version of blorr (0.2.0) is available with bug fixes and new features.")
26+
} else {
27+
packageStartupMessage(paste(strwrap(tip), collapse = "\n"))
28+
}
29+
1330
}

README.Rmd

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ knitr::opts_chunk$set(
1313
options(tibble.width = Inf)
1414
```
1515

16-
# blorr <img src="hex_blorr.png" height="100px" align="right" />
16+
# blorr
17+
18+
> Tools for building binary logistic regression models
1719
1820
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/blorr)](https://cran.r-project.org/package=blorr) [![cran checks](https://cranchecks.info/badges/summary/blorr)](https://cran.r-project.org/web/checks/check_results_blorr.html)
1921
[![Travis-CI Build Status](https://travis-ci.org/rsquaredacademy/blorr.svg?branch=master)](https://travis-ci.org/rsquaredacademy/blorr) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/rsquaredacademy/blorr?branch=master&svg=true)](https://ci.appveyor.com/project/rsquaredacademy/blorr) [![](https://cranlogs.r-pkg.org/badges/grand-total/blorr)](https://cran.r-project.org/package=blorr) [![Coverage status](https://codecov.io/gh/rsquaredacademy/blorr/branch/master/graph/badge.svg)](https://codecov.io/github/rsquaredacademy/blorr?branch=master) ![](https://img.shields.io/badge/lifecycle-maturing-blue.svg)

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11

22
<!-- README.md is generated from README.Rmd. Please edit that file -->
33

4-
# blorr <img src="hex_blorr.png" height="100px" align="right" />
4+
# blorr
5+
6+
> Tools for building binary logistic regression
7+
models
58

69
[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version/blorr)](https://cran.r-project.org/package=blorr)
710
[![cran

cran-comments.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## Test environments
2-
* local Windows 10, R 3.5.0
3-
* ubuntu 14.04 (on travis-ci), R 3.4.4, R 3.5.0, R-devel
2+
* local Windows 10, R 3.5.1
3+
* ubuntu 14.04 (on travis-ci), R 3.4.4, R 3.5.1, R-devel
44
* win-builder (devel and release)
55

66
## R CMD check results
77

88
0 errors | 0 warnings | 1 note
99

10-
* This is a new release.
10+
* There was 1 NOTE in R 3.4.4 about ORCID ID.

docs/CONDUCT.html

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE.html

Lines changed: 12 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)