diff --git a/docs/index.md b/docs/index.md index 33f4d95..d93c949 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,12 @@ # 📖 Release notes +## v2.0.1 +This release: +* Fixes the issue of `filepath` passed from `move-granules` step function + + + ## v2.0.0 This release: * Fixes the issue [issue 11](https://github.com/ghrcdaac/dmrpp-generator/issues/11). @@ -22,6 +28,23 @@ This release fixes the problem adding a type of meta data for the dmrpp file and ## v1.0.4 This release fixes the problem of assuming the granuleId is the same as the file name [issue#9](https://github.com/ghrcdaac/dmrpp-generator/issues/9) +## 🏃 Migration Steps to v2.0.1 +Change the source url in your terraform file to point to v2.0.0 release +```code +module "dmrpp-generator" { +source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v2.0.1/dmrpp-generator.zip" +... +} +``` +Change the value of your docker image to point to v2.0.1 tag +```code +module "dmrpp-generator" { +... +docker_image = "ghrcdaac/dmrpp-generator:v2.0.1" +} + + + ## 🏃 Migration Steps to v2.0.0 Change the source url in your terraform file to point to v2.0.0 release ```code @@ -30,7 +53,7 @@ source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v2.0.0/d ... } ``` -Change the value of your docker image to point to v1.1.0 tag +Change the value of your docker image to point to v2.0.0 tag ```code module "dmrpp-generator" { ...