-
Notifications
You must be signed in to change notification settings - Fork 0
Versioning and Releases
ksauraj edited this page Aug 5, 2026
·
1 revision
telectl follows Semantic Versioning 2.0 with Kubernetes-style pre-release stages.
v<major>.<minor>.<patch>[-<prerelease>]
flowchart LR
A["v0.1.0-alpha.1"] --> B["v0.1.0-alpha.2"]
B --> C["v0.1.0-beta.0"]
C --> D["v0.1.0-rc.1"]
D --> E["v0.1.0"]
E --> F["v0.1.1 (patch)"]
E --> G["v0.2.0 (minor)"]
| Stage | Meaning |
|---|---|
alpha.N |
Early preview; unstable; APIs may change |
beta.N |
Feature-complete; APIs stabilizing; limited production use |
rc.N |
Release candidate; production-ready pending final testing |
| (no suffix) | Stable release; semantic versioning guaranteed |
-
Tags are immutable. A broken release is fixed by the next version
(
v0.1.0-alpha.1broken → shipv0.1.0-alpha.2), never by deleting and re-pushing the same tag. Reusing a tag means anyone who already pulled it gets a different artifact than the tag claims — breaking reproducibility. -
Bump rules (SemVer):
-
major— breaking API changes -
minor— new features, backwards compatible -
patch— backwards-compatible fixes -
prerelease— incremented per pre-release (.1,.2, …)
-
- One release per tag push. CI builds binaries, checksums, and the multi-arch GHCR image, then creates the GitHub Release.
flowchart TB
T[push tag v0.1.0-beta.0] --> C{CI workflow}
C --> Tidy[Go Mod Tidy]
C --> Test[Test + vet + gofmt]
C --> Lint[golangci-lint]
Tidy --> B[Build]
Test --> B
Lint --> B
B --> REL[Create Release]
B --> D[Docker Image amd64+arm64]
D --> GHCR[(GHCR)]
REL --> GH[(GitHub Release + binaries + checksums)]
| Version | Date | Notes |
|---|---|---|
v0.1.0-beta.0 |
2026-08-05 | table rendering + log tail fixes; RBAC-enforced actions |
v0.1.0-alpha.2 |
2026-08-05 | impersonation security fix, Docker TARGETARCH fix |
v0.1.0-alpha.1 |
2026-08-05 | initial alpha |
See CHANGELOG.md in the repository (Keep a Changelog format).
Next: Architecture Overview · Security
Getting Started
User Guides
Deployment
- Try It Locally
- Helm Chart Guide
- Docker Deployment
- Two Deployment Modes
- Kubernetes RBAC
- Impersonation & RBAC
- Production Checklist
Development
- Architecture Overview
- How It Works
- Development Setup
- Contributing Guide
- Testing Guide
- Release Process
- Versioning & Releases
Operations