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: Actualizar hacs.json con la última versión de Home Assistant
31
- - name: Get latest Home Assistant version
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
- latest=$(curl -s https://api.github.com/repos/home-assistant/core/releases/latest | jq -r .tag_name)
35
- latest_clean=${latest#v}
36
- echo "ha_version=$latest_clean" >> $GITHUB_OUTPUT
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.2.1
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
 
@@ -24,7 +24,7 @@ from .const import DOMAIN, PLATFORMS
24
24
  _LOGGER = logging.getLogger(__name__)
25
25
 
26
26
  # Versión
27
- __version__ = "4.0.2"
27
+ __version__ = "4.0.3"
28
28
 
29
29
  # Definir el esquema de configuración CONFIG_SCHEMA
30
30
  CONFIG_SCHEMA = vol.Schema(
@@ -16,10 +16,10 @@
16
16
  "meteocatpy"
17
17
  ],
18
18
  "requirements": [
19
- "meteocatpy==1.0.2",
19
+ "meteocatpy==1.0.5",
20
20
  "solarmoonpy==1.0.8",
21
21
  "packaging>=20.3",
22
22
  "wrapt>=1.14.0"
23
23
  ],
24
- "version": "4.0.2"
24
+ "version": "4.0.3"
25
25
  }
@@ -1 +1 @@
1
- __version__ = "4.0.2"
1
+ __version__ = "4.0.3"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meteocat",
3
- "version": "4.0.2",
3
+ "version": "4.0.3",
4
4
  "description": "[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)\r [![Python version compatibility](https://img.shields.io/pypi/pyversions/meteocat)](https://pypi.org/project/meteocat)\r [![pipeline status](https://gitlab.com/figorr/meteocat/badges/master/pipeline.svg)](https://gitlab.com/figorr/meteocat/commits/master)",
5
5
  "main": "index.js",
6
6
  "directories": {
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "meteocat"
3
- version = "4.0.2"
3
+ version = "4.0.3"
4
4
  description = "Script para obtener datos meteorológicos de la API de Meteocat"
5
5
  authors = ["figorr <jdcuartero@yahoo.es>"]
6
6
  license = "Apache-2.0"