Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
jwood000 committed May 30, 2024
1 parent 762036e commit 31c9bff
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ remove_whitespace.sh
^vignettes/*.html
scripts/*
create_md.R
SO_Answers/*
SO_Answers/*.R
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: RcppAlgos
Version: 2.8.3
Version: 2.8.4
Title: High Performance Tools for Combinatorics and Computational Mathematics
Description: Provides optimized functions and flexible combinatorial iterators
implemented in C++ for solving problems in combinatorics and
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# RcppAlgos 2.8.

## New Features:

* Can now pass integer convertible results to the sample functions for the `n` parameter.

## Bug Fixes:

* Fixed bug with iterator when multithreading and exhausting the iterator.
* Enforced values being converted to a primitive to be of length 1.

# RcppAlgos 2.8.3

## New Features:
Expand Down
17 changes: 16 additions & 1 deletion inst/NEWS.Rd
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@
\name{NEWS}
\title{News for Package \pkg{RcppAlgos}}

\section{Changes in RcppAlgos version 2.8.3 (Release date: 2023-12-11)}{
\section{Changes in RcppAlgos version 2.8.4 (Release date: 2024-06-02)}{
\itemize{
\item New Features:
\itemize{
\item Can now pass integer convertible results to the sample functions for the \code{n} parameter.
\item Added \code{...} to allow for passing additional arguments to \code{FUN}. For example: \code{comboGeneral(letters, 3, FUN = paste, collapse = ", ")}.
}
\item Bug Fixes:
\itemize{
\item Fixed bug with iterator when multithreading and exhausting the iterator.
\item Enforced values being converted to a primitive to be of length 1.
}
}
}

\section{Changes in RcppAlgos version 2.8.3 (Release date: 2023-12-10)}{
\itemize{
\item New Features:
\itemize{
Expand Down

0 comments on commit 31c9bff

Please sign in to comment.