Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: usethis
Title: Automatically Set Up Commonly Used Package and Analysis Components
Version: 0.1.0
Version: 0.1.0.9000
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you please revert this change?

Authors@R: c(
person("Hadley", "Wickham", , "hadley@rstudio.com", role = c("aut", "cre")),
person("RStudio", role = "cph")
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# usethis 0.1.0.9000

* Adding simple newlines for readability in `use_github` and fixing
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this change is small enough and reflects stuff that's only in the devel version that there's no need for a news bullet.

badges for Coveralls in `use_coverage` (#77).

# usethis 0.1.0

This is a new package that extracts out many functions that previously lived in devtools, as well as providing more building blocks so you can create your own helpers.
Expand Down
2 changes: 1 addition & 1 deletion R/ci.R
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ coveralls_badge <- function(base_path = ".") {
gh <- gh::gh_tree_remote(base_path)
use_badge("Coverage status",
paste0("https://coveralls.io/r/", gh$username, "/", gh$repo, "?branch=master"),
paste0("https://img.shields.io/coveralls/", gh$username, "/", gh$repo, ".svg")
paste0("https://coveralls.io/repos/github/", gh$username, "/", gh$repo, "/", "badge.svg")
)
}

Expand Down
4 changes: 2 additions & 2 deletions R/github.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ use_github <- function(organisation = NULL,
pkg <- package_data(base_path)
done(
"Checking title and description",
paste("Title: ", pkg$Title),
paste("Description: ", pkg$Description)
paste("Title: ", pkg$Title, "\n"),
paste("Description: ", pkg$Description, "\n")
)
if (yesno("Are title and description ok?")) {
return(invisible())
Expand Down