-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba05fc7
commit 389be79
Showing
3 changed files
with
63 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: RcppHNSW | ||
Title: 'Rcpp' Bindings for 'hnswlib', a Library for Approximate Nearest Neighbors | ||
Version: 0.4.1.9000 | ||
Version: 0.5.0 | ||
Authors@R: c(person("James", "Melville", email = "[email protected]", | ||
role = c("aut", "cre")), | ||
person("Aaron", "Lun", role = "ctb"), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,52 +1,65 @@ | ||
## Release Summary | ||
|
||
This is a patch release to fix a valgrind error that was introduced with | ||
the previous submission. | ||
This is a patch release to fix various CRAN check errors. | ||
|
||
## Test environments | ||
|
||
* ubuntu 20.04 (on github actions), R 4.1.3, R 4.2.1, devel | ||
* local ubuntu 22.04 R 4.2.1 | ||
* Windows Server 2022 (on github actions), R 4.1.3 | ||
* local Windows 11 build, R 4.2.1 | ||
* mac OS X Big Sur (on github actions) R 4.2.1 | ||
* ubuntu 22.04 (on github actions), R 4.2.3, R 4.3.1, devel | ||
* local ubuntu 23.04 R 4.2.2 | ||
* Debian Linux, R-devel, GCC ASAN/UBSAN (via rhub) | ||
* Debian Linux, R-release, GCC (via rhub) | ||
* Ubuntu Linux 20.04.1 LTS, R-release, GCC (via rhub) | ||
* Fedora Linux, R-devel, clang, gfortran (via rhub) | ||
* Windows Server 2022 (on github actions), R 4.2.3, R 4.3.1 | ||
* Windows Server 2022, R-devel, 64 bit (via rhub) | ||
* local Windows 11 build, R 4.3.1 | ||
* win-builder (devel) | ||
* mac OS X Monterey (on github actions) R 4.3.1 | ||
|
||
## R CMD check results | ||
|
||
There were no ERRORs or WARNINGs. | ||
|
||
There was one NOTE: | ||
|
||
❯ checking installed package size ... NOTE | ||
installed size is 5.4Mb | ||
sub-directories of 1Mb or more: | ||
libs 5.1Mb | ||
N checking installed package size ... | ||
installed size is 6.6Mb | ||
sub-directories of 1Mb or more: | ||
libs 6.3Mb | ||
|
||
This is expected due to the use of C++ templates in hnswlib. | ||
|
||
There was a message about possibly mis-spelled words in DESCRIPTION: | ||
|
||
HNSW (2:28) | ||
|
||
This is spelled correctly. | ||
|
||
## CRAN checks | ||
|
||
There are no ERRORs or WARNINGs. | ||
|
||
There is a NOTE for all flavors about LazyData. This release fixes that NOTE. | ||
There is a NOTE: | ||
|
||
Check: C++ specification | ||
Result: NOTE | ||
Specified C++11: please drop specification unless essential | ||
|
||
This submission fixes this. | ||
|
||
There is a NOTE: | ||
|
||
Check: Rd metadata | ||
Result: NOTE | ||
Invalid package aliases in Rd file ‘RcppHnsw-package.Rd’: | ||
‘RcppHnsw-package’ | ||
|
||
There are four flavors with NOTEs about installed package size | ||
(r-release-macos-arm64, r-release-macos-x86_64, r-oldrel-macos-arm64, | ||
r-oldrel-macos-x86_64). This is expected and won't be fixed. | ||
This submissions fixes this. | ||
|
||
There is a valgrind issue. This releases fixes that issue. | ||
There are four flavors with NOTEs about installed package size (r-release-macos-arm64, | ||
r-release-macos-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64). This is expected and won't be | ||
fixed. | ||
|
||
## Downstream dependencies | ||
|
||
We checked 3 reverse dependencies (1 from CRAN + 2 from Bioconductor), comparing | ||
R CMD check results across CRAN and dev versions of this package. | ||
We checked 2 reverse dependencies (0 from CRAN + 2 from Bioconductor), comparing R CMD check | ||
results across CRAN and dev versions of this package. | ||
|
||
* We saw 0 new problems | ||
* We failed to check 0 packages | ||
* We saw 0 new problems | ||
* We failed to check 0 packages |