Skip to content

Commit b5eed11

Browse files
committed
undo some Romain-isms (#207)
1 parent 142f283 commit b5eed11

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2014-11-24 Dirk Eddelbuettel <[email protected]>
2+
3+
* inst/include/Rcpp/config.h: Release version is still 0.11.3
4+
15
2014-11-23 Dirk Eddelbuettel <[email protected]>
26

37
* inst/include/Rcpp/config.h: New macro RcppDevVersion to account for

inst/include/Rcpp/config.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@
2424

2525
#define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
2626

27-
// at this point 0.11.4 is the next but as of yet unreleased version
28-
#define RCPP_VERSION Rcpp_Version(0,11,4)
29-
3027
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1e6) + ((min)*1e4) + ((rev)*1e2) + (dev))
28+
29+
// the currently released version
30+
#define RCPP_VERSION Rcpp_Version(0,11,3)
31+
32+
// the current source snapshot
3133
#define RCPP_DEV_VERSION RcppDevVersion(0,11,3,2)
3234

3335
#endif

0 commit comments

Comments
 (0)