Skip to content

Commit

Permalink
Update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
fmalmeida committed Nov 10, 2021
1 parent 8cb1b4a commit fd57d33
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions markdown/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

The tracking for changes started in v2.

## v3.0.1

### hotfix

Super small fix to properly load YAML file when using the pipeline with cloud computing environments such as AWS/S3-bucket:

```bash
# from
parameter_yaml = new FileInputStream(new File(params.input))
# to
parameter_yaml = file(params.input).readLines().join("\n")
```

## v3.0

### hotfix
Expand Down

0 comments on commit fd57d33

Please sign in to comment.