Skip to content

Commit 3fed486

Browse files
tjmahrhadley
authored andcommitted
fix "Verison: " in use_dev_version() (#104)
1 parent 6bf74e5 commit 3fed486

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
* `use_r()` creates and opens an `.R` file
66

7+
* `use_dev_version()` now correctly updates the `Version` field in a package
8+
description file. (@tjmahr, #104)
9+
710
# usethis 1.0.0
811

912
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. As well as the many new helpers listed below, there are three main improvements to the package:

R/dev-version.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use_dev_version <- function() {
2020

2121
dev_ver <- paste0(ver, ".9000")
2222

23-
use_description_field("Verison", dev_ver)
23+
use_description_field("Version", dev_ver)
2424
use_news_heading(dev_ver)
2525
git_check_in(
2626
base_path = proj_get(),

0 commit comments

Comments
 (0)