diff --git a/.env.example b/.env.example index a593eb0a..153c417f 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -OSCTRL_VERSION=0.4.8 +OSCTRL_VERSION=0.4.9 OSQUERY_VERSION=5.20.0 NGINX_VERSION=1.21.6-alpine POSTGRES_VERSION=13.5-alpine diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d6e629e..84c023a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # osctrl Changelog -## 🔖 Release [0.4.8](https://github.com/jmpsec/osctrl/releases/tag/v0.4.8) +## 🔖 Release [0.4.9](https://github.com/jmpsec/osctrl/releases/tag/v0.4.9) ### 🚨 Breaking Changes diff --git a/osctrl-api.yaml b/osctrl-api.yaml index b1067c4b..a5d297df 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.8 + version: 0.4.9 externalDocs: description: osctrl documentation url: https://osctrl.net diff --git a/pkg/version/version.go b/pkg/version/version.go index b8d9ec46..6fd36330 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.8" + OsctrlVersion = "0.4.9" // OsqueryVersion to have the version for osquery defined OsqueryVersion = "5.20.0" ) diff --git a/pkg/version/version_test.go b/pkg/version/version_test.go index 480f5c64..37796fbc 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.8", OsctrlVersion) + assert.Equal(t, "0.4.9", OsctrlVersion) }