meteocat 4.0.2 → 4.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -27,13 +27,18 @@ jobs:
|
|
|
27
27
|
echo "Release version: $version"
|
|
28
28
|
echo "version=$version" >> $GITHUB_OUTPUT
|
|
29
29
|
|
|
30
|
-
# Paso 3:
|
|
31
|
-
- name: Get
|
|
30
|
+
# Paso 3: Determinar versión mínima de Home Assistant para hacs.json
|
|
31
|
+
- name: Get Home Assistant version
|
|
32
32
|
id: ha-version
|
|
33
33
|
run: |
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
34
|
+
# ──────────────────────────────────────────────────────────────
|
|
35
|
+
# Comportamiento normal: usar siempre la última versión
|
|
36
|
+
# latest=$(curl -s https://api.github.com/repos/home-assistant/core/releases/latest | jq -r .tag_name)
|
|
37
|
+
# latest_clean=${latest#v}
|
|
38
|
+
# echo "ha_version=$latest_clean" >> $GITHUB_OUTPUT
|
|
39
|
+
|
|
40
|
+
# Temporal: forzado a 2025.12.5 (enero 2026) por posible incompatibilidad con 2026.1.0
|
|
41
|
+
echo "ha_version=2025.12.5" >> $GITHUB_OUTPUT
|
|
37
42
|
|
|
38
43
|
- name: Update hacs.json
|
|
39
44
|
run: |
|
|
@@ -60,7 +65,7 @@ jobs:
|
|
|
60
65
|
|
|
61
66
|
# Paso 5: Subir meteocat.zip al release de GitHub
|
|
62
67
|
- name: Upload meteocat.zip to release
|
|
63
|
-
uses: softprops/action-gh-release@v2
|
|
68
|
+
uses: softprops/action-gh-release@v2
|
|
64
69
|
with:
|
|
65
70
|
files: meteocat.zip
|
|
66
71
|
env:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [4.0.3](https://github.com/figorr/meteocat/compare/v4.0.2...v4.0.3) (2026-01-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* bump meteocatpy to 1.0.5 for HA 2026.1 compatibility ([91ed9d1](https://github.com/figorr/meteocat/commit/91ed9d13b4b1daaad86c1fd16fbe90f576fd1128))
|
|
7
|
+
|
|
1
8
|
## [4.0.2](https://github.com/figorr/meteocat/compare/v4.0.1...v4.0.2) (2026-01-05)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "4.0.
|
|
1
|
+
__version__ = "4.0.3"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meteocat",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.3",
|
|
4
4
|
"description": "[](https://opensource.org/licenses/Apache-2.0)\r [](https://pypi.org/project/meteocat)\r [](https://gitlab.com/figorr/meteocat/commits/master)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|