diff --git a/.env.example b/.env.example index 1f46020f..5d8e8123 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -OSCTRL_VERSION=0.4.4 +OSCTRL_VERSION=0.4.5 OSQUERY_VERSION=5.18.1 NGINX_VERSION=1.21.6-alpine POSTGRES_VERSION=13.5-alpine diff --git a/CHANGELOG.md b/CHANGELOG.md index 469b9b80..5f82a78b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # osctrl Changelog -## 🔖 Release [0.4.4](https://github.com/jmpsec/osctrl/releases/tag/v0.4.4) +## 🔖 Release [0.4.5](https://github.com/jmpsec/osctrl/releases/tag/v0.4.5) ### 🚨 Breaking Changes diff --git a/deploy/docker/conf/dev/.env.example b/deploy/docker/conf/dev/.env.example index 2894f0a5..e4563f72 100644 --- a/deploy/docker/conf/dev/.env.example +++ b/deploy/docker/conf/dev/.env.example @@ -1,4 +1,4 @@ -OSCTRL_VERSION=0.4.4 +OSCTRL_VERSION=0.4.5 OSQUERY_VERSION=5.18.1 NGINX_VERSION=1.21.6-alpine POSTGRES_VERSION=13.5-alpine diff --git a/osctrl-api.yaml b/osctrl-api.yaml index 107352b7..948fcacd 100644 --- a/osctrl-api.yaml +++ b/osctrl-api.yaml @@ -7,7 +7,7 @@ servers: info: title: osctrl-api description: "This the API for osctrl, a fast and efficient osquery management solution." - version: 0.4.4 + version: 0.4.5 externalDocs: description: osctrl documentation url: https://osctrl.net diff --git a/pkg/version/version.go b/pkg/version/version.go index 4cdeae76..a0e7b42b 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -2,7 +2,7 @@ package version const ( // OsctrlVersion to have the version for all components - OsctrlVersion = "0.4.4" + OsctrlVersion = "0.4.5" // OsqueryVersion to have the version for osquery defined OsqueryVersion = "5.18.1" ) diff --git a/pkg/version/version_test.go b/pkg/version/version_test.go index 0bdf7155..d231ad1e 100644 --- a/pkg/version/version_test.go +++ b/pkg/version/version_test.go @@ -11,5 +11,5 @@ func TestOsqueryVersion(t *testing.T) { } func TestOsctrlVersion(t *testing.T) { - assert.Equal(t, "0.4.4", OsctrlVersion) + assert.Equal(t, "0.4.5", OsctrlVersion) }