diff --git a/CHANGELOG b/CHANGELOG index f4a0dd7..617997f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Version 0.2.0 (2021-08-30) +-------------------------- +Update to use Postgres Loader v0.3.1 (#1) + Version 0.1.0 (2021-08-25) -------------------------- Initial release diff --git a/README.md b/README.md index 37d9834..e824653 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,8 @@ A Terraform module which deploys a Snowplow Postgres Loader application on Google running on top of Compute Engine. If you want to use a custom image for this deployment you will need to ensure it is based on top of Ubuntu 20.04. +_WARNING_: If you are upgrading from module version 0.1.x you will need to issue a manual table update - [details can be found here](https://discourse.snowplowanalytics.com/t/snowplow-postgres-loader-0-3-0-released/5553#changing-some-of-the-column-types-7). You will need to adjust the alter table command with the schema that your `events` table is deployed within. + ## Telemetry This module by default collects and forwards telemetry information to Snowplow to understand how our applications are being used. No identifying information about your sub-account or account fingerprints are ever forwarded to us - it is very simple information about what modules and applications are deployed and active. diff --git a/main.tf b/main.tf index 4f7c9fc..d9c6071 100644 --- a/main.tf +++ b/main.tf @@ -1,6 +1,6 @@ locals { module_name = "postgres-loader-pubsub-ce" - module_version = "0.1.0" + module_version = "0.2.0" app_name = "snowplow-postgres-loader" app_version = "0.3.1"