Skip to content

Commit

Permalink
Merge v0.5.0 rc (#347)
Browse files Browse the repository at this point in the history
* Bump version

* Fix compiler warning
  • Loading branch information
jayhesselberth authored Jan 2, 2019
1 parent 756178e commit 85a1f27
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: valr
Type: Package
Title: Genome Interval Arithmetic in R
Version: 0.4.2.9000
Version: 0.5.0
Authors@R: c(
person('Jay', 'Hesselberth', role = c('aut', 'cre'),
email = '[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# valr 0.4.2.9000
# valr 0.5.0

## Major changes

Expand Down
6 changes: 2 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
## New minor version

* This is a new minor version (see NEWS.md).
* This is a new major version (see NEWS.md).

* Addresses an incompatibility with the dplyr package v0.7.8 release.

* Also added fix for rchk error.
* Addresses an incompatibility with the forthcoming dplyr v0.8.0 release.

## Test environments

Expand Down
2 changes: 1 addition & 1 deletion src/partition.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ void partitionIntervals(const IntervalCache& ivl_cache,

// generate partitions as intervals between
size_t n_pts = ivl_points.size() ;
for (int i = 0; i < n_pts - 1; i++) {
for (size_t i = 0; i < n_pts - 1; i++) {
ivl_t new_ivl(ivl_points[i], ivl_points[i + 1], ivl_cache.ivls[0].value) ;
ivl_result.push_back(new_ivl) ;
}
Expand Down

0 comments on commit 85a1f27

Please sign in to comment.