From 53a7760acc87cbb03d3ec752932fc8e76ac222fc Mon Sep 17 00:00:00 2001 From: kai Date: Thu, 4 Feb 2021 17:44:04 +0000 Subject: [PATCH] v0.1.2. Closes #136 --- CHANGELOG.md | 13 +++++++++++++ README.md | 2 +- version/version.go | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7c3701f1f..9fd9b20f5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## v0.1.2 [2021-02-04] + +_What's new?_ +* The `.inspect` command no longer requires the fully qualified name for tables. ([#21](https://github.com/turbot/steampipe/issues/21)) +* The helper function `glob` has been added. ([#134](https://github.com/turbot/steampipe/issues/134)) +* The output of the `plugin install` command now shows the installed version. ([#93](https://github.com/turbot/steampipe/issues/93)) +* The `.help` command now displays a link to the inline help docs. ([#92](https://github.com/turbot/steampipe/issues/92)) +* The wait spinner is now only shown in interactive mode. ([#106](https://github.com/turbot/steampipe/issues/106)) + +_Bug fixes_ +* Fix JSON and bool columns displaying as strings. ([#95](https://github.com/turbot/steampipe/issues/95)) +* Fix column headings displaying in upper case. ([#94](https://github.com/turbot/steampipe/issues/94)) + ## v0.1.1 [2021-01-28] _What's new?_ diff --git a/README.md b/README.md index aa753479b4..4a2b2d03c2 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@

- +   diff --git a/version/version.go b/version/version.go index c3923e3848..d35ed6e4eb 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ import ( ) // The main version number that is being run at the moment. -var Version = "0.1.1" +var Version = "0.1.2" // 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