meteocatpy 0.0.10 → 0.0.12

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,3 +1,18 @@
1
+ ## [0.0.12](https://github.com/figorr/meteocatpy/compare/v0.0.11...v0.0.12) (2024-12-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * 0.0.12 ([81aa152](https://github.com/figorr/meteocatpy/commit/81aa1528202661eb4854e37f9b1880f798d9457e))
7
+ * fix cache dir ([8df49f9](https://github.com/figorr/meteocatpy/commit/8df49f97fd8f6645dae9db9f53a94a44395447ff))
8
+
9
+ ## [0.0.11](https://github.com/figorr/meteocatpy/compare/v0.0.9...v0.0.10) (2024-12-10)
10
+
11
+ ### Bug Fixes
12
+
13
+ * 0.0.11 ([4e1d638](https://github.com/figorr/meteocatpy/commit/4e1d6387200fb6cde2d06c448c178b108bbb2b92))
14
+
15
+
1
16
  ## [0.0.10](https://github.com/figorr/meteocatpy/compare/v0.0.9...v0.0.10) (2024-12-10)
2
17
 
3
18
 
@@ -21,7 +21,7 @@ class MeteocatVariables:
21
21
  }
22
22
 
23
23
  # Configurar la ruta de caché
24
- self._cache_dir = cache_dir or ".meteocat_cache"
24
+ self._cache_dir = cache_dir or os.path.join("custom_components", "meteocat", ".meteocat_cache")
25
25
  self._cache = Cache(self._cache_dir)
26
26
 
27
27
  async def get_variables(self, force_update=False):
@@ -1,2 +1,2 @@
1
1
  # version.py
2
- __version__ = "0.0.11"
2
+ __version__ = "0.0.12"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meteocatpy",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
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/meteocatpy)](https://pypi.org/project/meteocatpy)\r [![pipeline status](https://gitlab.com/figorr/meteocatpy/badges/master/pipeline.svg)](https://gitlab.com/figorr/meteocatpy/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 = "meteocatpy"
3
- version = "0.0.11"
3
+ version = "0.0.12"
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"