meteocat 0.1.19 → 0.1.20

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 CHANGED
@@ -1,10 +1,14 @@
1
- ## [0.1.19](https://github.com/figorr/meteocat/compare/v0.1.18...v0.1.19) (2024-12-06)
1
+ ## [0.1.20](https://github.com/figorr/meteocat/compare/v0.1.19...v0.1.20) (2024-12-06)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * fix semantic release ([25eb7e2](https://github.com/figorr/meteocat/commit/25eb7e295357acb9f608df1e0a764d5417340de0))
7
- * fix workflow token ([fdb20e1](https://github.com/figorr/meteocat/commit/fdb20e162696f556dba326ea6702f00dfbae392d))
6
+ * 0.1.20 ([d21f624](https://github.com/figorr/meteocat/commit/d21f624a60171e69c5e634446e66f968b9486ee8))
7
+ * fix jobs ([132bca0](https://github.com/figorr/meteocat/commit/132bca073eabffd02d09543501bec06b64df052a))
8
+ * fix semantic-release ([f4a6a59](https://github.com/figorr/meteocat/commit/f4a6a595e1be07e853016de9b4be6508f2732016))
9
+ * fix semantic-release version update ([4a88b8d](https://github.com/figorr/meteocat/commit/4a88b8dc9c06854c3e0b1f113f47ed666d5433ff))
10
+ * include semantic-release ([77ebe6f](https://github.com/figorr/meteocat/commit/77ebe6f26291c314bc340e03092a83c31bc041ea))
11
+ * update version files ([eb7e8f4](https://github.com/figorr/meteocat/commit/eb7e8f4cb19c4c7c7e1cd1b16c144a7e2eab1ff9))
8
12
 
9
13
  # CHANGELOG
10
14
 
@@ -21,7 +21,7 @@ from .const import (
21
21
  _LOGGER = logging.getLogger(__name__)
22
22
 
23
23
  # Versión
24
- __version__ = "0.1.18"
24
+ __version__ = "0.1.20"
25
25
 
26
26
  # Plataformas soportadas por la integración
27
27
  PLATFORMS = ["sensor", "entity"]
@@ -8,5 +8,5 @@
8
8
  "documentation": "https://gitlab.com/figorr/meteocat",
9
9
  "loggers": ["meteocatpy"],
10
10
  "requirements": ["meteocatpy==0.0.6", "packaging>=20.3", "wrapt>=1.14.0"],
11
- "version": "0.1.18"
11
+ "version": "0.1.20"
12
12
  }
@@ -1,2 +1,2 @@
1
1
  # version.py
2
- __version__ = "0.1.18"
2
+ __version__ = "0.1.20"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meteocat",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
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/poetry.lock CHANGED
@@ -2573,6 +2573,17 @@ files = [
2573
2573
  cryptography = ">=2.0"
2574
2574
  jeepney = ">=0.6"
2575
2575
 
2576
+ [[package]]
2577
+ name = "semantic-release"
2578
+ version = "0.1.0"
2579
+ description = ""
2580
+ optional = false
2581
+ python-versions = ">=3.6,<4.0"
2582
+ files = [
2583
+ {file = "semantic-release-0.1.0.tar.gz", hash = "sha256:943c4d2f5bf2f42958c1868f3c5ccabfcade6017d9d7562192d24053fb2c8efa"},
2584
+ {file = "semantic_release-0.1.0-py3-none-any.whl", hash = "sha256:ac7bbd0aaf3bad04d812fae2979386388c9c9a1af489ed97f3fdbaa24eef2a2b"},
2585
+ ]
2586
+
2576
2587
  [[package]]
2577
2588
  name = "setuptools"
2578
2589
  version = "75.6.0"
@@ -3202,4 +3213,4 @@ type = ["pytest-mypy"]
3202
3213
  [metadata]
3203
3214
  lock-version = "2.0"
3204
3215
  python-versions = "3.12.7"
3205
- content-hash = "14e839230b99a74455884fe546a34bbf0b0a8ef71b6c53cf4c4b048694e9b969"
3216
+ content-hash = "d182027538c326588f3ff35a63dd2e0d1e6c87de85023df0f153fd6e59981923"
package/pyproject.toml CHANGED
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "meteocat"
3
- version = "0.1.18"
3
+ version = "0.1.20"
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"
@@ -20,6 +20,7 @@ twine = "^5.1.1"
20
20
  aiofiles = "^24.1.0"
21
21
  voluptuous = "^0.15.2"
22
22
  syrupy = "^4.8.0"
23
+ semantic-release = "^0.1.0"
23
24
 
24
25
 
25
26
  [tool.semantic_release]