diff --git a/pkg/constants/db.go b/pkg/constants/db.go index 792c9f1aaa..699eb358e1 100644 --- a/pkg/constants/db.go +++ b/pkg/constants/db.go @@ -30,7 +30,7 @@ const ( // constants for installing db and fdw images const ( DatabaseVersion = "14.2.0" - FdwVersion = "1.7.0" + FdwVersion = "1.7.1-alpha.0" // PostgresImageRef is the OCI Image ref for the database binaries PostgresImageRef = "us-docker.pkg.dev/steampipe/steampipe/db:14.2.0" diff --git a/pkg/version/version.go b/pkg/version/version.go index 2c2bdfa5fa..fc56dccb1c 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -18,12 +18,12 @@ 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.20.0" +var steampipeVersion = "0.20.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 = "alpha.0" // SteampipeVersion is an instance of semver.Version. This has the secondary // benefit of verifying during tests and init time that our version is a