Compare commits

..

6 Commits

Author SHA1 Message Date
Stefan Allius
95f5eb0d39 remove doppled headline 2025-04-13 21:19:11 +02:00
Stefan Allius
b68f1b82f9 Merge branch 'releases/v0.13' into fix-rel-build 2025-04-13 21:18:17 +02:00
Stefan Allius
fcf11d9db3 update changelog 2025-04-13 21:16:12 +02:00
Stefan Allius
f96d456226 build rel without BUILD_ID 2025-04-13 21:14:15 +02:00
Stefan Allius
4e3dd79d84 bump python version to 3.12.10-r0 2025-04-13 20:30:53 +02:00
Stefan Allius
9cff581792 disable cache for rc build 2025-04-13 20:29:27 +02:00
6 changed files with 6 additions and 7 deletions

View File

@@ -1 +1 @@
3.13.3 3.13.2

View File

@@ -5,8 +5,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [unreleased]
## [0.13.0] - 2025-04-13 ## [0.13.0] - 2025-04-13
- update dependency python to 3.13 - update dependency python to 3.13

View File

@@ -1 +1 @@
0.14.0 0.13.0

View File

@@ -1,4 +1,4 @@
aiomqtt==2.3.2 aiomqtt==2.3.1
schema==0.7.7 schema==0.7.7
aiocron==2.1 aiocron==2.1
aiohttp==3.11.16 aiohttp==3.11.16

View File

@@ -32,7 +32,8 @@ rel : STAGE=rel
export BUILD_DATE := ${shell date -Iminutes} export BUILD_DATE := ${shell date -Iminutes}
debug dev : BUILD_ID := ${shell date +'%y%m%d%H%M'} BUILD_ID := ${shell date +'%y%m%d%H%M'}
rel : BUILD_ID=
VERSION := $(shell cat $(SRC)/.version) VERSION := $(shell cat $(SRC)/.version)
export MAJOR := $(shell echo $(VERSION) | cut -f1 -d.) export MAJOR := $(shell echo $(VERSION) | cut -f1 -d.)

View File

@@ -13,7 +13,7 @@
# 1 Build Base Image # # 1 Build Base Image #
###################### ######################
ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.4" ARG BUILD_FROM="ghcr.io/hassio-addons/base:17.2.3"
# hadolint ignore=DL3006 # hadolint ignore=DL3006
FROM $BUILD_FROM AS base FROM $BUILD_FROM AS base