From 27871b3b8115dfd29df6949626e953be82149f4b Mon Sep 17 00:00:00 2001 From: Javier Marcos <1271349+javuto@users.noreply.github.com> Date: Tue, 24 Feb 2026 12:02:46 +0100 Subject: [PATCH] Prepare for release 0.5.0 --- .env.example | 2 +- CHANGELOG.md | 2 +- osctrl-api.yaml | 2 +- pkg/version/version.go | 2 +- pkg/version/version_test.go | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.env.example b/.env.example index 69f4fd01..52421d60 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -OSCTRL_VERSION=0.4.9 +OSCTRL_VERSION=0.5.0 OSQUERY_VERSION=5.21.0 NGINX_VERSION=1.21.6-alpine POSTGRES_VERSION=13.5-alpine diff --git a/CHANGELOG.md b/CHANGELOG.md index 84c023a2..9267b170 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # osctrl Changelog -## 🔖 Release [0.4.9](https://github.com/jmpsec/osctrl/releases/tag/v0.4.9) +## 🔖 Release [0.5.0](https://github.com/jmpsec/osctrl/releases/tag/v0.5.0) ### 🚨 Breaking Changes diff --git a/osctrl-api.yaml b/osctrl-api.yaml index a5d297df..e0442f75 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.9 + version: 0.5.0 externalDocs: description: osctrl documentation url: https://osctrl.net diff --git a/pkg/version/version.go b/pkg/version/version.go index 05dd98b8..d5b7d64b 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.9" + OsctrlVersion = "0.5.0" // OsqueryVersion to have the version for osquery defined OsqueryVersion = "5.21.0" ) diff --git a/pkg/version/version_test.go b/pkg/version/version_test.go index 40308063..5683146a 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.9", OsctrlVersion) + assert.Equal(t, "0.5.0", OsctrlVersion) }