From 66db9ae2fc0af10129bbdc3bc8e13f179bde0804 Mon Sep 17 00:00:00 2001 From: amarouane Date: Thu, 18 Feb 2021 13:19:43 -0600 Subject: [PATCH] Upgrade docker base image --- docs/index.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/docs/index.md b/docs/index.md index a9d32ca..3b4196c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -1,6 +1,11 @@ # 📖 Release notes +## v1.1.0 +This release: +* Fixes the file type issue, now you can define a custom dmrpp file type. +* Uses a new hyrax release [base_image](https://hub.docker.com/r/opendap/besd) + ## v1.0.6 This release: * Fixes the issue of AWS provider [issue#10](https://github.com/ghrcdaac/dmrpp-generator/issues/10) @@ -12,6 +17,24 @@ 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 v1.1.0 +Change the source url in your terraform file to point to v1.1.0 release +```code +module "dmrpp-generator" { +source = "https://github.com/ghrcdaac/dmrpp-generator/releases/download/v1.1.0/dmrpp-generator.zip" +... +} +``` +Change the value of your docker image to point to v1.1.0 tag +```code +module "dmrpp-generator" { +... +docker_image = "ghrcdaac/dmrpp-generator:v1.1.0" +} + +``` + ## 🏃 Migration Steps to v1.0.6 Change the source url in your terraform file to point to v1.0.6 release ```code