Skip to content

Commit

Permalink
upped stanford version
Browse files Browse the repository at this point in the history
  • Loading branch information
trinker committed Sep 12, 2017
1 parent 046e3fd commit 0fc06d4
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 8 deletions.
8 changes: 5 additions & 3 deletions DESCRIPTION
@@ -1,13 +1,15 @@
Package: coreNLPsetup
Title: A Set of Tools to Ensure Proper Setup of Stanford's CoreNLP
Version: 0.0.1
Authors@R: c(person("Tyler", "Rinker", email = "tyler.rinker@gmail.com", role = c("aut", "cre")))
Authors@R: c(person("Tyler", "Rinker", email =
"tyler.rinker@gmail.com", role = c("aut", "cre")))
Maintainer: Tyler Rinker <tyler.rinker@gmail.com>
Description: Ensures that 'CoreNLP' is installed and is playing nicely with 'Java'.
Description: Ensures that 'CoreNLP' is installed and is playing nicely
with 'Java'.
Depends: R (>= 3.3.3)
Imports: qdapRegex, utils
Suggests: testthat
Date: 2017-04-11
Date: 2017-09-11
License: GPL-2
LazyData: TRUE
Roxygen: list(wrap = FALSE)
Expand Down
23 changes: 23 additions & 0 deletions NEWS.md
@@ -0,0 +1,23 @@
NEWS
====

Versioning
----------

Releases will be numbered with the following semantic versioning format:

&lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;

And constructed with the following guidelines:

* Breaking backward compatibility bumps the major (and resets the minor
and patch)
* New additions without breaking backward compatibility bumps the minor
(and resets the patch)
* Bug fixes and misc changes bumps the patch


coreNLPsetup 0.0.1
----------------------------------------------------------------

This package is...
2 changes: 1 addition & 1 deletion R/coreNLP_version.R
Expand Up @@ -6,6 +6,6 @@
#' @references \url{http://stanfordnlp.github.io/CoreNLP/index.html#download}
#' @examples
#' coreNLP_version
coreNLP_version <- 'stanford-corenlp-full-2016-10-31'
coreNLP_version <- 'stanford-corenlp-full-2017-06-09'


6 changes: 3 additions & 3 deletions inst/build.R
Expand Up @@ -2,7 +2,7 @@ root <- Sys.getenv("USERPROFILE")
pack <- basename(getwd())

quick <- TRUE
pdf <- TRUE
pdf <- FALSE

unlink(paste0(pack, ".pdf"), recursive = TRUE, force = TRUE)
devtools::document()
Expand All @@ -14,7 +14,7 @@ if(pdf){
file.copy(paste0(pack, '.pdf'), file.path(root,"Desktop", paste0(pack, '.pdf')))
while (file.exists(paste0(pack, ".pdf"))) {unlink(paste0(pack, ".pdf"), recursive = TRUE, force = TRUE)}
empts <- grep("^\\.Rd", dir(all.files = TRUE), value = TRUE)
unlink(empts, recursive = TRUE, force = TRUE)
unlink(empts, recursive = TRUE, force = TRUE)
}

message("Done!")
message("Done!")
2 changes: 1 addition & 1 deletion inst/maintenance.R
@@ -1,7 +1,7 @@
#========
# BUILD
#========
source("inst/build.R")
update_date(); update_news(); source("inst/build.R")

#==========================
# knit README.md
Expand Down

0 comments on commit 0fc06d4

Please sign in to comment.