Skip to content

Commit

Permalink
hotfix: remove sorting on metadata creation
Browse files Browse the repository at this point in the history
  • Loading branch information
psanker committed Jul 15, 2024
1 parent 8729556 commit 3aa1aa4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: blueprintr
Title: Automagically Document and Test Datasets Using Targets Or Drake
Version: 0.2.6
Version: 0.2.7
Authors@R:
c(person(given = "Patrick",
family = "Anker",
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# blueprintr 0.2.7
* Remove automatic sorting introduced in newer versions of tidytable

# blueprintr 0.2.6
* Switch default workflow executor to targets
* Update vignettes to demonstrate current workflow procedure (@hgao1, #59)
Expand Down
3 changes: 2 additions & 1 deletion R/metadata-create.R
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ link_dependency_meta <- function(meta_dt, deps_metalist) {
paste0(unique_val(x), collapse = "|")
}
),
.by = "name"
.by = "name",
.sort = FALSE
)

meta_dt
Expand Down

0 comments on commit 3aa1aa4

Please sign in to comment.