meteocatpy 1.0.1 → 1.0.4
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/.gitlab-ci.yml +6 -6
- package/CHANGELOG.md +28 -0
- package/meteocatpy/version.py +1 -1
- package/package.json +1 -1
- package/poetry.lock +2312 -1655
- package/pyproject.toml +11 -5
package/.gitlab-ci.yml
CHANGED
|
@@ -29,12 +29,12 @@ default:
|
|
|
29
29
|
github_job:
|
|
30
30
|
stage: github
|
|
31
31
|
script:
|
|
32
|
-
- git checkout master
|
|
33
|
-
- git remote set-url origin "$GH_REMOTE_URL"
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
- git
|
|
37
|
-
allow_failure: true
|
|
32
|
+
- git checkout master
|
|
33
|
+
- git remote set-url origin "$GH_REMOTE_URL"
|
|
34
|
+
- git config --global user.name "$GIT_USER_NAME"
|
|
35
|
+
- git config --global user.email "$GIT_USER_EMAIL"
|
|
36
|
+
- git remote set-url origin "https://x-access-token:${GH_TOKEN}@github.com/figorr/meteocatpy.git"
|
|
37
|
+
allow_failure: true
|
|
38
38
|
only:
|
|
39
39
|
- master
|
|
40
40
|
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## [1.0.4](https://github.com/figorr/meteocatpy/compare/v1.0.3...v1.0.4) (2026-01-09)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* 0.0.0 ([abdc578](https://github.com/figorr/meteocatpy/commit/abdc578e9bdede2a8063971a5627ee847998d7dd))
|
|
7
|
+
* 1.0.3 ([1654af1](https://github.com/figorr/meteocatpy/commit/1654af1768a5ac2d133a3b1e5d9bc1d245e11b0b))
|
|
8
|
+
* 1.0.4 ([bc4897e](https://github.com/figorr/meteocatpy/commit/bc4897e4c199a935b29f97bf522d3093c1fad6ab))
|
|
9
|
+
* bump voluptuous to 0.16 for HA 2026.1 compatibility ([a5485e8](https://github.com/figorr/meteocatpy/commit/a5485e8667dcb302080ddea2f226be8c095f6417))
|
|
10
|
+
* bump voluptuous to 0.16 for HA 2026.1 compatibility ([1002eec](https://github.com/figorr/meteocatpy/commit/1002eecac25afd661cb8f20ce442016ba3943f08))
|
|
11
|
+
* Bump voluptuous to 0.16 for HA 2026.1 compatibility ([c0098a6](https://github.com/figorr/meteocatpy/commit/c0098a6822640e6bd1773836c395eef63c1b33aa))
|
|
12
|
+
* fix version ([6867a78](https://github.com/figorr/meteocatpy/commit/6867a7818a975da4a92cd8050965577bfa313e73))
|
|
13
|
+
* version ([3dbb99f](https://github.com/figorr/meteocatpy/commit/3dbb99f7ebf72af7d5c212170b3d14de22f11cf7))
|
|
14
|
+
|
|
15
|
+
## [1.0.3](https://github.com/figorr/meteocatpy/compare/v1.0.2...v1.0.3) (2026-01-10)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* Same as v1.0.2
|
|
21
|
+
|
|
22
|
+
## [1.0.2](https://github.com/figorr/meteocatpy/compare/v1.0.1...v1.0.2) (2025-11-06)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* Python 3.14 full support (aiohttp 3.11.10) ([e228668](https://github.com/figorr/meteocatpy/commit/e22866820c6a1c1673e0ed8461a40eaf01d298f8))
|
|
28
|
+
|
|
1
29
|
## [1.0.1](https://github.com/figorr/meteocatpy/compare/v1.0.0...v1.0.1) (2025-02-05)
|
|
2
30
|
|
|
3
31
|
|
package/meteocatpy/version.py
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
# version.py
|
|
2
|
-
__version__ = "1.0.
|
|
2
|
+
__version__ = "1.0.4"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "meteocatpy",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "[](https://opensource.org/licenses/Apache-2.0)\r [](https://pypi.org/project/meteocatpy)\r [](https://gitlab.com/figorr/meteocatpy/commits/master)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"directories": {
|