meteocat 2.1.0 → 2.2.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.
- package/CHANGELOG.md +18 -0
- package/README.md +1 -1
- package/custom_components/meteocat/__init__.py +29 -1
- package/custom_components/meteocat/config_flow.py +140 -1
- package/custom_components/meteocat/const.py +14 -0
- package/custom_components/meteocat/coordinator.py +524 -9
- package/custom_components/meteocat/manifest.json +2 -2
- package/custom_components/meteocat/options_flow.py +30 -4
- package/custom_components/meteocat/sensor.py +420 -4
- package/custom_components/meteocat/strings.json +197 -4
- package/custom_components/meteocat/translations/ca.json +197 -4
- package/custom_components/meteocat/translations/en.json +197 -4
- package/custom_components/meteocat/translations/es.json +197 -4
- package/custom_components/meteocat/version.py +1 -1
- package/images/api_limits.png +0 -0
- package/images/diagnostic_sensors.png +0 -0
- package/images/dynamic_sensors.png +0 -0
- package/package.json +1 -1
- package/poetry.lock +598 -586
- package/pyproject.toml +3 -3
package/pyproject.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "meteocat"
|
|
3
|
-
version = "2.
|
|
3
|
+
version = "2.2.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"
|
|
@@ -28,8 +28,8 @@ semantic-release = "^0.1.0"
|
|
|
28
28
|
|
|
29
29
|
[tool.semantic_release]
|
|
30
30
|
branch = "master" # Define la rama desde la que se harán los lanzamientos
|
|
31
|
-
version_source = "
|
|
32
|
-
version_variable = "meteocat/version.py:__version__" # Ubicación de la variable de versión
|
|
31
|
+
version_source = "tag" # Usa los tags para calcular la versión
|
|
32
|
+
version_variable = "custom_components/meteocat/version.py:__version__" # Ubicación de la variable de versión
|
|
33
33
|
changelog = { file = "CHANGELOG.md" } # Genera el changelog en el archivo especificado
|
|
34
34
|
upload_to_pypi = false # Sube automáticamente la versión a PyPI
|
|
35
35
|
ci = false # Cambiar a false si no usas CI/CD
|