Skip to content

Commit

Permalink
v1.0.1, SystemRequirements: C++11
Browse files Browse the repository at this point in the history
  • Loading branch information
evanbiederstedt committed Jan 9, 2022
1 parent 6c19768 commit 918dbeb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [1.0.1] - 2022-01-08
* Explicitly use 'SystemRequirements: C++11'

## [1.0.0] - 2021-11-19
* `N2R` has gone through no major revisions in over a year. In order to avoid any confusion, this should be released with a major version.

Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: N2R
Type: Package
Title: Fast and Scalable Approximate k-Nearest Neighbor Search Methods using 'N2' Library
Version: 1.0.0
Version: 1.0.1
Authors@R: c(person("Peter", "Kharchenko", email = "[email protected]", role = c("aut")), person("Viktor", "Petukhov", email = "[email protected]", role = c("aut")), person("Dirk", "Eddelbuettel", email="[email protected]", role=c("ctb")), person("Evan", "Biederstedt", email = "[email protected]", role=c("cre", "aut")))
Description: Implements methods to perform fast approximate K-nearest neighbor search on input matrix. Algorithm based on the 'N2' implementation of an approximate nearest neighbor search using hierarchical Navigable Small World (NSW) graphs. The original algorithm is described in "Efficient and Robust Approximate Nearest Neighbor Search Using Hierarchical Navigable Small World Graphs", Y. Malkov and D. Yashunin, <doi:10.1109/TPAMI.2018.2889473>, <arXiv:1603.09320>.
License: Apache License 2.0
Expand All @@ -10,7 +10,7 @@ Depends: Matrix
Imports: Rcpp (>= 1.0.4)
Suggests: testthat
LinkingTo: Rcpp, RcppSpdlog, RcppEigen
SystemRequirements: GNU make
SystemRequirements: C++11, GNU make
RoxygenNote: 7.1.2
URL: https://github.com/kharchenkolab/N2R
BugReports: https://github.com/kharchenkolab/N2R/issues
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ For installing from source on Mac OS, please see instructions in the wiki [here]
If you find `N2R` useful for your publication, please cite:

```
Peter Kharchenko, Viktor Petukhov and Evan Biederstedt (2020). N2R:
Peter Kharchenko, Viktor Petukhov and Evan Biederstedt (2022). N2R:
Fast and Scalable Approximate k-Nearest Neighbor Search Methods using
N2 Library. R package version 1.0.0
N2 Library. R package version 1.0.1
https://github.com/kharchenkolab/N2R
```

0 comments on commit 918dbeb

Please sign in to comment.