Skip to content

Commit 770dd83

Browse files
authored
v0.2.3. Closes #248
1 parent aae6bd9 commit 770dd83

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## v0.2.3 [2021-03-03]
2+
_What's new?_
3+
* Increase timeout for plugin update HTTP call. ([#216](https://github.com/turbot/steampipe/issues/216))
4+
* `plugin update` now checks installed version of a plugin is out of date before updating. ([#234](https://github.com/turbot/steampipe/issues/234))
5+
* Improve the error messages for sql errors. ([#118](https://github.com/turbot/steampipe/issues/118))
6+
* Wrap `plugin list` output to window width. ([#235](https://github.com/turbot/steampipe/issues/235))
7+
8+
_Bug fixes_
9+
* Fix timestamp quals not being passed to plugin. ([#247](https://github.com/turbot/steampipe/issues/247))
10+
* Fix `steampipe server not found` error after failed connection validation. ([#220](https://github.com/turbot/steampipe/issues/220))
11+
* Ensure all panics are recovered. ([#246](https://github.com/turbot/steampipe/issues/246))
12+
113
## v0.2.2 [2021-02-25]
214
_What's new?_
315
* Set Inspect column width to no larger than required to display data. ([#155](https://github.com/turbot/steampipe/issues/155))

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<p align="center">
1111
<a aria-label="Steampipe version" href="https://steampipe.io/download">
12-
<img alt="" src="https://img.shields.io/static/v1?label=cli&message=v0.2.2&style=for-the-badge&labelColor=777777&color=F3F1F0">
12+
<img alt="" src="https://img.shields.io/static/v1?label=cli&message=v0.2.3&style=for-the-badge&labelColor=777777&color=F3F1F0">
1313
</a>
1414
&nbsp;
1515
<a aria-label="License" href="LICENSE">

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Also https://www.digitalocean.com/community/tutorials/using-ldflags-to-set-versi
1919
**/
2020

2121
// The main version number that is being run at the moment.
22-
var steampipeVersion = "0.2.2"
22+
var steampipeVersion = "0.2.3"
2323

2424
// A pre-release marker for the version. If this is "" (empty string)
2525
// then it means that it is a final release. Otherwise, this is a pre-release

0 commit comments

Comments
 (0)