Skip to content

Commit

Permalink
Fixes before release
Browse files Browse the repository at this point in the history
  • Loading branch information
gdemin committed Jul 26, 2020
1 parent be847f8 commit 6b54905
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Suggests:
DT,
htmltools,
knitr,
markdown,
rmarkdown,
repr,
ggplot2,
testthat,
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
0.10.6 (26.07.2020)
================
* fix for new data.table version (issue #67). Thanks to John Williams.
* fix unfriendly and arrogant dplyr behaviour (issues #65, #68)
* fix dplyr behaviour (issues #65, #68)

0.10.5 (05.07.2020)
================
Expand Down
2 changes: 1 addition & 1 deletion R/S3_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ c_labelled_factors = function(vectors){
is_ordered = any(vapply(vectors, FUN = is.ordered, FUN.VALUE = TRUE))
vectors = unlab(vectors)
all_levels = lapply(vectors, extract_levels)
all_levels = unique(unlist(all_levels, use.name = FALSE))
all_levels = unique(unlist(all_levels, use.names = FALSE))
res = unlist(lapply(vectors, as.character), use.names = FALSE)
if(is_ordered){
ordered(res, levels = all_levels)
Expand Down

0 comments on commit 6b54905

Please sign in to comment.