0.13.0 release

This commit is contained in:
henrygd
2025-10-03 13:53:12 -04:00
parent cca7b36039
commit ddb298ac7c
4 changed files with 17 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ import "github.com/blang/semver"
const ( const (
// Version is the current version of the application. // Version is the current version of the application.
Version = "0.13.0-alpha.1" Version = "0.13.0"
// AppName is the name of the application. // AppName is the name of the application.
AppName = "beszel" AppName = "beszel"
) )
@@ -15,4 +15,4 @@ const (
var MinVersionCbor = semver.MustParse("0.12.0") var MinVersionCbor = semver.MustParse("0.12.0")
// MinVersionAgentResponse is the minimum supported version for AgentResponse compatibility. // MinVersionAgentResponse is the minimum supported version for AgentResponse compatibility.
var MinVersionAgentResponse = semver.MustParse("0.13.0-alpha.1") var MinVersionAgentResponse = semver.MustParse("0.13.0")

View File

@@ -1,12 +1,12 @@
{ {
"name": "beszel", "name": "beszel",
"version": "0.12.12", "version": "0.13.0",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "beszel", "name": "beszel",
"version": "0.12.12", "version": "0.13.0",
"dependencies": { "dependencies": {
"@henrygd/queue": "^1.0.7", "@henrygd/queue": "^1.0.7",
"@henrygd/semaphore": "^0.0.2", "@henrygd/semaphore": "^0.0.2",

View File

@@ -1,7 +1,7 @@
{ {
"name": "beszel", "name": "beszel",
"private": true, "private": true,
"version": "0.12.12", "version": "0.13.0",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite --host", "dev": "vite --host",

View File

@@ -1,3 +1,15 @@
## 0.13.0
- Add one minute chart with one second interval.
- Improve accuracy of disk I/O statistics.
- Add `SYSTEM_NAME` environment variable to override system name on universal token registration. (#1184)
- Add `noindex` HTML meta tag. (#1218)
- Update Go dependencies.
## 0.12.12 ## 0.12.12
- Fix high CPU usage when `intel_gpu_top` returns an error. (#1203) - Fix high CPU usage when `intel_gpu_top` returns an error. (#1203)