Skip to content

Commit

Permalink
Release 0.0.22
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jan 23, 2024
1 parent cdaeeb8 commit 7215536
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2024-01-23 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Release 0.0.22
* inst/include/RcppAnnoy.h: Idem

* man/RcppAnnoy-package.Rd: Remove reference to example left from
auto-generated stanza (to satisfy a CRAN request)

2023-07-02 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Release 0.0.21
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: RcppAnnoy
Type: Package
Title: 'Rcpp' Bindings for 'Annoy', a Library for Approximate Nearest Neighbors
Version: 0.0.21
Date: 2023-07-02
Version: 0.0.22
Date: 2024-01-23
Author: Dirk Eddelbuettel
Maintainer: Dirk Eddelbuettel <[email protected]>
Description: 'Annoy' is a small C++ library for Approximate Nearest Neighbors
Expand Down
6 changes: 6 additions & 0 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
\newcommand{\ghpr}{\href{https://github.com/eddelbuettel/rcppannoy/pull/#1}{##1}}
\newcommand{\ghit}{\href{https://github.com/eddelbuettel/rcppannoy/issues/#1}{##1}}

\section{Changes in version 0.0.22 (2024-01-23)}{
\itemize{
\item Replace empty examples macros to satisfy CRAN request.
}
}

\section{Changes in version 0.0.21 (2023-07-02)}{
\itemize{
\item The build setup switched from C++11 to C++17 which offers threading
Expand Down
2 changes: 1 addition & 1 deletion inst/include/RcppAnnoy.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

#define RCPPANNOY_VERSION_MAJOR 0
#define RCPPANNOY_VERSION_MINOR 0
#define RCPPANNOY_VERSION_PATCH 21
#define RCPPANNOY_VERSION_PATCH 22
#define RCPPANNOY_VERSION_MICRO 0

#define RcppAnnoyVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
Expand Down
3 changes: 0 additions & 3 deletions man/RcppAnnoy-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,3 @@
\url{https://github.com/spotify/annoy}
}
\keyword{package}
\examples{
# Optional simple examples of the most important functions
}

0 comments on commit 7215536

Please sign in to comment.