Skip to content

Commit aca5897

Browse files
committed
version bump. Also "fprintf" replaced with "throw" in order to not upset CRAN.
1 parent d80e0be commit aca5897

File tree

6 files changed

+29
-11
lines changed

6 files changed

+29
-11
lines changed

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "inst/include"]
22
path = inst/include
3-
url = https://github.com/greg7mdp/sparsepp.git
3+
url = https://github.com/dselivanov/sparsepp.git

DESCRIPTION

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: sparsepp
22
Type: Package
33
Title: 'Rcpp' Interface to 'sparsepp'
4-
Version: 0.1.2
5-
Date: 2017-01-22
4+
Version: 0.2.0
5+
Date: 2017-08-07
66
Authors@R: c(
77
person("Gregory", "Popovitch", role = c("aut", "cph"), email = "greg7mdp@gmail.com"),
88
person("Google Inc", role = c("aut", "cph")),
@@ -16,7 +16,7 @@ Description: Provides interface to 'sparsepp' - fast, memory efficient hash map.
1616
memory usage (especially when the final size of the map is not known in advance).
1717
License: BSD_3_clause + file LICENSE
1818
Encoding: UTF-8
19-
URL: https://github.com/greg7mdp/sparsepp, https://github.com/dselivanov/sparsepp
20-
BugReports: https://github.com/dselivanov/sparsepp/issues
19+
URL: https://github.com/greg7mdp/sparsepp, https://github.com/dselivanov/r-sparsepp
20+
BugReports: https://github.com/dselivanov/r-sparsepp/issues
2121
Suggests: Rcpp
22-
RoxygenNote: 5.0.1
22+
RoxygenNote: 6.0.1

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ To use C++ code from `sparsepp`:
1212

1313
1. In DESCRIPTION, add `LinkingTo: sparsepp`.
1414
1. In the C++ file, add:
15-
`#include <sparsepp.h>`
15+
`#include <sparsepp/spp.h>`
1616

1717
## Simple example
1818

1919
```c++
20-
#include <sparsepp.h>
20+
#include <sparsepp/spp.h>
2121
using spp::sparse_hash_map;
2222
sparse_hash_map<string, int> smap;
2323
```
@@ -27,7 +27,7 @@ sparse_hash_map<string, int> smap;
2727
#include <iostream>
2828
#include <functional>
2929
#include <string>
30-
#include <sparsepp.h>
30+
#include <sparsepp/spp.h>
3131

3232
using std::string;
3333

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Test environments
22

3-
* local OS X install, R 3.3.1
3+
* local OS X install, R 3.4.0
44
* win-builder (devel)
55

66
## R CMD check results

man/sparsepp-package.Rd

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)