Watch
1
0
Fork
You've already forked RedFlag
0

bump: v0.2.8.1

Version lockstep across server, agent, docker-compose.
This commit is contained in:
Fimeg 2026-06-11 17:47:42 -04:00
commit 7beb0b9478
3 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 MiB

View file

@ -21,7 +21,7 @@ services:
context: . context: .
dockerfile: ./server/Dockerfile dockerfile: ./server/Dockerfile
args: args:
BUILD_VERSION: ${BUILD_VERSION:-0.2.8.0} BUILD_VERSION: ${BUILD_VERSION:-0.2.8.1}
container_name: redflag-server container_name: redflag-server
volumes: volumes:
- server-config:/app/config - server-config:/app/config

View file

@ -15,8 +15,8 @@ import (
// tag — the release gate enforces this. ldflags may override at build time; // tag — the release gate enforces this. ldflags may override at build time;
// the release pipeline injects the tag so binaries and source agree. // the release pipeline injects the tag so binaries and source agree.
var ( var (
AgentVersion = "0.2.8.0" AgentVersion = "0.2.8.1"
ConfigVersion = "0.2.8.0" ConfigVersion = "0.2.8.1"
MinAgentVersion = "0.1.22" MinAgentVersion = "0.1.22"
) )