Skip to content

Commit ccf3fad

Browse files
feat(mdm): bump version to v1.9.0
1 parent 51fcbb0 commit ccf3fad

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<a href="https://github.com/step-security/dev-machine-guard/actions/workflows/go.yml"><img src="https://github.com/step-security/dev-machine-guard/actions/workflows/go.yml/badge.svg" alt="Go CI"></a>
1313
<a href="https://github.com/step-security/dev-machine-guard/actions/workflows/shellcheck.yml"><img src="https://github.com/step-security/dev-machine-guard/actions/workflows/shellcheck.yml/badge.svg" alt="ShellCheck CI"></a>
1414
<a href="LICENSE"><img src="https://img.shields.io/badge/license-Apache%202.0-blue.svg" alt="License: Apache 2.0"></a>
15-
<a href="https://github.com/step-security/dev-machine-guard/releases"><img src="https://img.shields.io/badge/version-1.8.2-purple.svg" alt="Version 1.8.2"></a>
15+
<a href="https://github.com/step-security/dev-machine-guard/releases"><img src="https://img.shields.io/badge/version-1.9.0-purple.svg" alt="Version 1.9.0"></a>
1616
</p>
1717

1818
<p align="center">

examples/sample-output.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"agent_version": "1.8.2",
2+
"agent_version": "1.9.0",
33
"scan_timestamp": 1741305600,
44
"scan_timestamp_iso": "2026-03-07T00:00:00Z",
55
"device": {

internal/buildinfo/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ package buildinfo
33
import "fmt"
44

55
const (
6-
Version = "1.8.2"
6+
Version = "1.9.0"
77
AgentURL = "https://github.com/step-security/dev-machine-guard"
88
)
99

1010
// Build-time variables set via -ldflags by goreleaser or Makefile.
1111
var (
1212
GitCommit string // short commit hash (Makefile) or full commit (goreleaser)
13-
ReleaseTag string // e.g., "v1.8.2" (goreleaser only)
13+
ReleaseTag string // e.g., "v1.9.0" (goreleaser only)
1414
ReleaseBranch string // e.g., "main" (goreleaser only)
1515
)
1616

internal/output/html_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ func TestHTML_GeneratesFile(t *testing.T) {
1313
defer os.Remove(tmpFile)
1414

1515
result := &model.ScanResult{
16-
AgentVersion: "1.8.2",
16+
AgentVersion: "1.9.0",
1717
ScanTimestamp: 1700000000,
1818
ScanTimestampISO: "2023-11-14T22:13:20Z",
1919
Device: model.Device{

internal/output/json_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
func TestJSON_ValidOutput(t *testing.T) {
1212
result := &model.ScanResult{
13-
AgentVersion: "1.8.2",
13+
AgentVersion: "1.9.0",
1414
AgentURL: "https://github.com/step-security/dev-machine-guard",
1515
ScanTimestamp: 1700000000,
1616
ScanTimestampISO: "2023-11-14T22:13:20Z",

internal/output/pretty_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010

1111
func TestPretty_ContainsHeaders(t *testing.T) {
1212
result := &model.ScanResult{
13-
AgentVersion: "1.8.2",
13+
AgentVersion: "1.9.0",
1414
ScanTimestamp: 1700000000,
1515
ScanTimestampISO: "2023-11-14T22:13:20Z",
1616
Device: model.Device{
@@ -40,7 +40,7 @@ func TestPretty_ContainsHeaders(t *testing.T) {
4040

4141
func TestPretty_ContainsBanner(t *testing.T) {
4242
result := &model.ScanResult{
43-
AgentVersion: "1.8.2",
43+
AgentVersion: "1.9.0",
4444
ScanTimestamp: 1700000000,
4545
Device: model.Device{Hostname: "test"},
4646
AIAgentsAndTools: []model.AITool{},

internal/telemetry/telemetry.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ type PerformanceMetrics struct {
6565
// Output format matches the shell script's sample_log:
6666
//
6767
// ==========================================
68-
// StepSecurity Device Agent v1.8.2
68+
// StepSecurity Device Agent v1.9.0
6969
// ==========================================
7070
// [scanning] Lock acquired (PID: 32560)
7171
// [scanning] Device ID (Serial): ...

0 commit comments

Comments
 (0)