diff --git a/CHANGELOG.md b/CHANGELOG.md index 57624f7217..e126445d10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.2.1 [2021-02-20] +_Bug fixes_ +* Ensure all hydrate errors are reported. ([#206](https://github.com/turbot/steampipe/issues/206)) +* Change plugin update URL to hub.steampipe.io. ([#201](https://github.com/turbot/steampipe/issues/201)) +* Steampipe version string should include 'prerelease' suffix if it is set. ([#200](https://github.com/turbot/steampipe/issues/200)) +* Column headers in table output should respect casing of the column name. ([#181](https://github.com/turbot/steampipe/issues/181)) + ## v0.2.0 [2021-02-18] _What's new?_ * Add support for multiregion queries. ([#197](https://github.com/turbot/steampipe/issues/197)) diff --git a/README.md b/README.md index 56b45c8bcb..c34e0b2cf0 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@
- + diff --git a/version/version.go b/version/version.go index 4ad7242a1f..051096223c 100644 --- a/version/version.go +++ b/version/version.go @@ -19,7 +19,7 @@ Also https://www.digitalocean.com/community/tutorials/using-ldflags-to-set-versi **/ // The main version number that is being run at the moment. -var steampipeVersion = "0.2.0" +var steampipeVersion = "0.2.1" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release