Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion osctrl-api.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
2 changes: 1 addition & 1 deletion pkg/version/version_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Loading