Skip to content

Commit fb93724

Browse files
committed
bump package version
1 parent e2af5bd commit fb93724

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

.zenodo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"title": "git2rdata: Store and Retrieve Data.frames in a Git Repository",
3-
"version": "0.4.1",
3+
"version": "0.5.0",
44
"license": "GPL-3.0",
55
"upload_type": "software",
66
"description": "<p>The git2rdata package is an R package for writing and reading dataframes as plain text files. A metadata file stores important information. 1) Storing metadata allows to maintain the classes of variables. By default, git2rdata optimizes the data for file storage. The optimization is most effective on data containing factors. The optimization makes the data less human readable. The user can turn this off when they prefer a human readable format over smaller files. Details on the implementation are available in vignette(“plain_text”, package = “git2rdata”). 2) Storing metadata also allows smaller row based diffs between two consecutive commits. This is a useful feature when storing data as plain text files under version control. Details on this part of the implementation are available in vignette(“version_control”, package = “git2rdata”). Although we envisioned git2rdata with a git workflow in mind, you can use it in combination with other version control systems like subversion or mercurial. 3) git2rdata is a useful tool in a reproducible and traceable workflow. vignette(“workflow”, package = “git2rdata”) gives a toy example. 4) vignette(“efficiency”, package = “git2rdata”) provides some insight into the efficiency of file storage, git repository size and speed for writing and reading.<\/p>",

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ identifiers:
4040
value: 10.5281/zenodo.1485309
4141
- type: url
4242
value: https://ropensci.github.io/git2rdata/
43-
version: 0.4.1
43+
version: 0.5.0

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: git2rdata
22
Title: Store and Retrieve Data.frames in a Git Repository
3-
Version: 0.4.1
3+
Version: 0.5.0
44
Authors@R: c(
55
person("Thierry", "Onkelinx", , "[email protected]", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0001-8804-4216", affiliation = "Research Institute for Nature and Forest (INBO)")),

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# git2rdata 0.5.0
2+
3+
* `read_vc()` handles empty datasets stored with `split_by`.
4+
15
# git2rdata 0.4.1
26

37
* Add `update_metadata()` to update the description of a `git2rdata` object.

inst/CITATION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ citHeader("To cite `git2rdata` in publications please use:")
22
# begin checklist entry
33
bibentry(
44
bibtype = "Manual",
5-
title = "git2rdata: Store and Retrieve Data.frames in a Git Repository. Version 0.4.1",
5+
title = "git2rdata: Store and Retrieve Data.frames in a Git Repository. Version 0.5.0",
66
author = c( author = c(person(given = "Thierry", family = "Onkelinx"))),
77
year = 2024,
88
url = "https://ropensci.github.io/git2rdata/",
99
abstract = "The git2rdata package is an R package for writing and reading dataframes as plain text files. A metadata file stores important information. 1) Storing metadata allows to maintain the classes of variables. By default, git2rdata optimizes the data for file storage. The optimization is most effective on data containing factors. The optimization makes the data less human readable. The user can turn this off when they prefer a human readable format over smaller files. Details on the implementation are available in vignette(\"plain_text\", package = \"git2rdata\"). 2) Storing metadata also allows smaller row based diffs between two consecutive commits. This is a useful feature when storing data as plain text files under version control. Details on this part of the implementation are available in vignette(\"version_control\", package = \"git2rdata\"). Although we envisioned git2rdata with a git workflow in mind, you can use it in combination with other version control systems like subversion or mercurial. 3) git2rdata is a useful tool in a reproducible and traceable workflow. vignette(\"workflow\", package = \"git2rdata\") gives a toy example. 4) vignette(\"efficiency\", package = \"git2rdata\") provides some insight into the efficiency of file storage, git repository size and speed for writing and reading.",
10-
textVersion = "Onkelinx, Thierry (2024) git2rdata: Store and Retrieve Data.frames in a Git Repository. Version 0.4.1. https://ropensci.github.io/git2rdata/",
10+
textVersion = "Onkelinx, Thierry (2024) git2rdata: Store and Retrieve Data.frames in a Git Repository. Version 0.5.0. https://ropensci.github.io/git2rdata/",
1111
keywords = "git; version control; plain text data",
1212
doi = "10.5281/zenodo.1485309",
1313
)

0 commit comments

Comments
 (0)