meteocat 0.1.20 → 0.1.21

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/.releaserc CHANGED
@@ -3,9 +3,21 @@
3
3
  "plugins": [
4
4
  "@semantic-release/commit-analyzer",
5
5
  "@semantic-release/release-notes-generator",
6
- "@semantic-release/changelog",
6
+ [
7
+ "@semantic-release/changelog",
8
+ {
9
+ "changelogFile": "CHANGELOG.md"
10
+ }
11
+ ],
7
12
  "@semantic-release/npm",
8
- "@semantic-release/github"
13
+ "@semantic-release/github",
14
+ [
15
+ "@semantic-release/git",
16
+ {
17
+ "assets": ["CHANGELOG.md", "package.json", "pyproject.toml"],
18
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
19
+ }
20
+ ]
9
21
  ],
10
22
  "repositoryUrl": "https://github.com/figorr/meteocat"
11
23
  }
package/CHANGELOG.md CHANGED
@@ -1,14 +1,12 @@
1
- ## [0.1.20](https://github.com/figorr/meteocat/compare/v0.1.19...v0.1.20) (2024-12-06)
1
+ ## [0.1.21](https://github.com/figorr/meteocat/compare/v0.1.20...v0.1.21) (2024-12-06)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
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))
6
+ * 0.1.21 ([a4df744](https://github.com/figorr/meteocat/commit/a4df7445f5dc05fe0a74c9d949fa551a77af6cf0))
7
+ * delete node_modules ([3b817a5](https://github.com/figorr/meteocat/commit/3b817a53c5fd6dcc44f17865f6fb39bb79c032ab))
8
+ * new repo file structure ([7ef2dbe](https://github.com/figorr/meteocat/commit/7ef2dbe67bc41c77e0f931d833578540dafe0ca8))
9
+ * semantic-release job ([a78eb5c](https://github.com/figorr/meteocat/commit/a78eb5c6dbbaef556a40053f98257906adeeecaa))
12
10
 
13
11
  # CHANGELOG
14
12
 
@@ -21,7 +21,7 @@ from .const import (
21
21
  _LOGGER = logging.getLogger(__name__)
22
22
 
23
23
  # Versión
24
- __version__ = "0.1.20"
24
+ __version__ = "0.1.21"
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.20"
11
+ "version": "0.1.21"
12
12
  }
@@ -1,2 +1,2 @@
1
1
  # version.py
2
- __version__ = "0.1.20"
2
+ __version__ = "0.1.21"
package/filetree.txt CHANGED
@@ -4,6 +4,7 @@
4
4
  ├── .gitignore
5
5
  ├── .gitlab-ci.yml
6
6
  ├── .pre-commit-config.yaml
7
+ ├── .releaserc
7
8
  ├── .releaserc.toml
8
9
  ├── AUTHORS.md
9
10
  ├── CHANGELOG.md
@@ -31,8 +32,10 @@
31
32
  ├── filetree.txt
32
33
  ├── hacs.json
33
34
  ├── package-lock.json
35
+ ├── package.json
34
36
  ├── poetry.lock
35
37
  ├── pyproject.toml
38
+ ├── releaserc.json
36
39
  ├── requirements.test.txt
37
40
  ├── setup.cfg
38
41
  ├── setup.py
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meteocat",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
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 = "0.1.20"
3
+ version = "0.1.21"
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"