Skip to content

Commit 9c56a1a

Browse files
committed
fix #436
1 parent 1d03884 commit 9c56a1a

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: geoflow
2-
Version: 1.2.0
3-
Date: 2026-01-23
2+
Version: 1.2.0.9999
3+
Date: 2026-01-28
44
Title: Orchestrate Geospatial (Meta)Data Management Workflows and Manage FAIR Services
55
Description: An engine to facilitate the orchestration and execution of metadata-driven data management workflows, in compliance with 'FAIR'
66
(Findable, Accessible, Interoperable and Reusable) data management principles. By means of a pivot metadata model, relying on the 'DublinCore' standard (<https://dublincore.org/>),

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2+
## [geoflow 1.2.9000](https://github.com/r-geoflow/geoflow) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-unavailable-orange.svg)](https://github.com/r-geoflow/geoflow)
3+
4+
**Bug fixes**
5+
6+
* [#436](https://github.com/r-geoflow/geoflow/issues/436) initWorkflow doesn't work for YAML configuration file : incorrect mime type
7+
18
## [geoflow 1.2.0](https://github.com/r-geoflow/geoflow) | [![CRAN_Status_Badge](https://img.shields.io/badge/CRAN-published-blue.svg)](https://github.com/r-geoflow/geoflow)
29

310
**New features**

R/initWorkflow.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ initWorkflow <- function(file, dir, jobDirPath = NULL, handleMetadata = TRUE, se
3838
config = jsonlite::read_json(file)
3939
config_ext = "json"
4040
},
41-
"text/yaml" = {
41+
"application/yaml" = {
4242
config = yaml::read_yaml(file)
4343
config_ext = "yml"
4444
},

0 commit comments

Comments
 (0)