Skip to content

Commit

Permalink
add missing 'raw' param in bm25 fn-names cache #14
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Oct 3, 2024
1 parent 6df74cb commit 6e4277b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: pkgsimil
Title: Similarity Metrics between R Packages
Version: 0.1.2.160
Version: 0.1.2.161
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265")),
Expand Down
2 changes: 1 addition & 1 deletion R/cache.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pkgsimil_load_data <- function (what = "embeddings", corpus = "ropensci",
readRDS (fname)
}

get_cache_file_name <- function (what, corpus, fns) {
get_cache_file_name <- function (what, corpus, fns, raw) {

corpus <- match.arg (tolower (corpus), c ("ropensci", "cran"))
what <- match.arg (what, c ("embeddings", "idfs", "functions", "calls"))
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"codeRepository": "https://github.com/ropensci-review-tools/pkgsimil",
"issueTracker": "https://github.com/ropensci-review-tools/pkgsimil/issues",
"license": "https://spdx.org/licenses/MIT",
"version": "0.1.2.160",
"version": "0.1.2.161",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit 6e4277b

Please sign in to comment.