Skip to content

Commit 99b2b56

Browse files
committed
update package version
1 parent 7fe5d4d commit 99b2b56

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

data/b3data_package/datapackage.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@
5555
"description": "This data package contains data resources to be used across the b3verse (https://docs.b-cubed.eu/guides/b3verse/). This includes example datasets (occurrence cubes) as well as spatial resources like reference grids or raster data.",
5656
"keywords1": "data cubes",
5757
"licenses.name": " CC BY-NC 4.0",
58+
"version": "0.1.0",
5859
"sources.title": "b3data-scripts",
5960
"contributors.title": "Ward Langeraert",
6061
"contributors.path": "https://orcid.org/0000-0002-5900-8109",

source/create_b3data_package.Rmd

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ Metadata for the entire data package (see: [Frictionless Data Package spec](http
8282
- **description**: overview of purpose, content, and structure of the data package
8383
- **keywords**: e.g. `"biodiversity", "data cube", "b3verse", "GBIF", "frictionless"`
8484
- **licenses**: [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/)
85+
- **version**: semantic versioning string, e.g. 0.1.0
8586
- **sources**: GitHub repository [b3data-scripts](https://github.com/b-cubed-eu/b3data-scripts)
8687
- **contributors**: name, ORCID, and roles
8788

@@ -204,13 +205,16 @@ b3data_package <- append(
204205
title = "Creative Commons Attribution-NonCommercial 4.0 International"
205206
)),
206207
after = 6)
208+
b3data_package <- append(b3data_package,
209+
c(version = "0.1.0"),
210+
after = 7)
207211
b3data_package <- append(
208212
b3data_package,
209213
c(sources = c(
210214
title = "b3data-scripts",
211215
path = "https://github.com/b-cubed-eu/b3data-scripts"
212216
)),
213-
after = 7)
217+
after = 8)
214218
b3data_package <- append(
215219
b3data_package,
216220
c(contributors = c(
@@ -228,7 +232,7 @@ b3data_package <- append(
228232
organization = "Research Institute for Nature and Forest (INBO)"
229233
)
230234
)),
231-
after = 8)
235+
after = 9)
232236
233237
# Warning: append() drops the custom datapackage class.
234238
# It can be added again by running b3data_package through create_package()

0 commit comments

Comments
 (0)