Skip to content

Commit

Permalink
v5.10.1-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidaguerre committed May 8, 2024
1 parent c3322c5 commit 27a3f44
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v5.10.1 [2024-05-08]
_Bug fixes_
* Ensure QueryData passed to ConnectionKeyColumns value callback is populated with ConnectionManager. ([#797](https://github.com/turbot/steampipe-plugin-sdk/issues/797))

## v5.10.0 [2024-04-10]
_What's new?_
* Add support for connection key columns. ([#768](https://github.com/turbot/steampipe-plugin-sdk/issues/768))
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ import (
var ProtocolVersion int64 = 20220201

// Version is the main version number that is being run at the moment.
var version = "5.10.0"
var version = "5.10.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
// such as "dev" (in development), "beta", "rc1", etc.
var prerelease = ""
var prerelease = "rc.0"

// semVer is an instance of version.Version. This has the secondary
// benefit of verifying during tests and init time that our version is a
Expand Down

0 comments on commit 27a3f44

Please sign in to comment.