Skip to content

Commit 2996254

Browse files
authored
Merge pull request #763 from jmpsec/prepare-osctrl-0.4.9
⚠️ Prepare for release 0.4.9
2 parents 4044cab + 28c8c14 commit 2996254

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
OSCTRL_VERSION=0.4.8
1+
OSCTRL_VERSION=0.4.9
22
OSQUERY_VERSION=5.20.0
33
NGINX_VERSION=1.21.6-alpine
44
POSTGRES_VERSION=13.5-alpine

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# osctrl Changelog
22

3-
## 🔖 Release [0.4.8](https://github.com/jmpsec/osctrl/releases/tag/v0.4.8)
3+
## 🔖 Release [0.4.9](https://github.com/jmpsec/osctrl/releases/tag/v0.4.9)
44

55
### 🚨 Breaking Changes
66

osctrl-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ servers:
77
info:
88
title: osctrl-api
99
description: "This the API for osctrl, a fast and efficient osquery management solution."
10-
version: 0.4.8
10+
version: 0.4.9
1111
externalDocs:
1212
description: osctrl documentation
1313
url: https://osctrl.net

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version
22

33
const (
44
// OsctrlVersion to have the version for all components
5-
OsctrlVersion = "0.4.8"
5+
OsctrlVersion = "0.4.9"
66
// OsqueryVersion to have the version for osquery defined
77
OsqueryVersion = "5.20.0"
88
)

pkg/version/version_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ func TestOsqueryVersion(t *testing.T) {
1111
}
1212

1313
func TestOsctrlVersion(t *testing.T) {
14-
assert.Equal(t, "0.4.8", OsctrlVersion)
14+
assert.Equal(t, "0.4.9", OsctrlVersion)
1515
}

0 commit comments

Comments
 (0)