Watch
1
0
Fork
You've already forked RedFlag
0

v0.2.3.1: bump version (README, versions.go, compose)

This commit is contained in:
Fimeg 2026-05-31 22:07:40 -04:00
commit 2b02f65dbd
3 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
**Self-hosted update management for operators who own their stack.**
`v0.2.3.0` — May 2026 · MIT License
`v0.2.3.1` — May 2026 · MIT License
> **You're early — nearly 600 of you cloned this before it was announced.**
> If you want it to keep existing, [sponsor the work](#sponsorship--consulting).

View file

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

View file

@ -12,8 +12,8 @@ import (
// Build-time injected version information (SERVER AUTHORITY)
var (
AgentVersion = "0.2.3.0"
ConfigVersion = "0.2.3.0"
AgentVersion = "0.2.3.1"
ConfigVersion = "0.2.3.1"
MinAgentVersion = "0.1.22"
)