2 Commits
0.2.0 ... 0.2.1

Author SHA1 Message Date
c233b020fc ci(version): 0.2.1 2026-04-23 21:24:28 +03:00
869a8ae79f fix(gismeteo): fix optional subdistrict in gismeteo reponse 2026-04-23 21:24:13 +03:00
5 changed files with 10 additions and 6 deletions

View File

@@ -88,7 +88,11 @@ class GismeteoApi(WeatherApi):
lon=item["coordinates"]["longitude"],
country=item["translations"]["kk"]["country"]["name"],
district=item["translations"]["kk"]["district"]["name"],
subdistrict=item["translations"]["kk"]["subdistrict"]["name"],
subdistrict=(
item["translations"]["kk"]["subdistrict"]["name"]
if "subdistrict" in item["translations"]["kk"]
else ""
),
)
)
return result

View File

@@ -1 +1 @@
__version__ = "0.2.0"
__version__ = "0.2.1"

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "gallery"
version = "0.2.0"
version = "0.2.1"
description = ""
authors = ["shmyga <shmyga.z@gmail.com>"]
readme = "README.md"

View File

@@ -1,12 +1,12 @@
{
"name": "gallery-static",
"version": "0.2.0",
"version": "0.2.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "gallery-static",
"version": "0.2.0",
"version": "0.2.1",
"license": "ISC",
"dependencies": {
"@popperjs/core": "^2.11.8",

View File

@@ -1,6 +1,6 @@
{
"name": "gallery",
"version": "0.2.0",
"version": "0.2.1",
"scripts": {
"build": "vite build",
"dev": "vite build --watch"