diff --git a/DESCRIPTION b/DESCRIPTION index e33b6ea..c92e87a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: tensorr Title: Sparse Tensors in R -Version: 0.1.0 +Version: 0.1.1 Authors@R: person("Robert","Zamora", email = "zamora.rr@gmail.com", role = c("aut", "cre")) Description: Provides methods to manipulate and store sparse tensors. Tensors are multidimensional generalizations of matrices (two dimensional) and @@ -24,5 +24,5 @@ Suggests: knitr, rmarkdown, testthat -RoxygenNote: 6.0.1 +RoxygenNote: 6.1.1 VignetteBuilder: knitr diff --git a/NEWS.md b/NEWS.md index 59a58c0..725c1ac 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,9 @@ +# tensorr 0.1.1 + +* added dimnames to tensors (#7) +* fixed bug when extracting indices using negative or repeated indices (#8) +* lower required R version to 3.3.0 (#10) + # tensorr 0.1 * Added initial sptensor and dtensor objects.