Skip to content

Commit

Permalink
version 0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
the-infinity committed Oct 17, 2024
1 parent 9061cde commit cf3b138
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 0.15.0

Release 2024-10-17

### Features

* [ParkAPI Sources: Add Kienzler VVS Converter](https://github.com/ParkenDD/parkapi-sources-v3/pull/147)


### Fixes

* [ParkAPI Sources: Update pbw data for static parking sites](https://github.com/ParkenDD/parkapi-sources-v3/pull/144)
* [ParkAPI Sources: Update kienzler data for static parking sites](https://github.com/ParkenDD/parkapi-sources-v3/pull/145)
* [ParkAPI Sources: Fix bfrk_bw_car attribute after source change](https://github.com/ParkenDD/parkapi-sources-v3/pull/149)


## 0.14.3

Release 2024-09-24
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ Flask~=3.0.3
Flask-Failsafe~=0.2
Flask-Migrate~=4.0.7
Flask-SQLAlchemy~=3.1.1
SQLAlchemy~=2.0.34
SQLAlchemy~=2.0.35
SQLAlchemy-Utc~=0.14.0
pytz~=2024.2
psycopg2-binary~=2.9.9
pymysql~=1.1.1
requests~=2.32.3
alembic~=1.13.2
alembic~=1.13.3
gunicorn~=23.0.0
pyyaml~=6.0.2
celery~=5.4.0
Expand All @@ -20,7 +20,7 @@ openpyxl~=3.1.5
opening-hours-py~=0.6.18
kombu~=5.4.1
lxml~=5.3.0
parkapi-sources~=0.13.3
parkapi-sources~=0.14.0

# required for converters
beautifulsoup4~=4.12.3
Expand Down
2 changes: 1 addition & 1 deletion webapp/models/parking_site.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class ParkingSite(BaseModel):
back_populates='parking_site',
cascade='all, delete, delete-orphan',
)
parking_site_group: Mapped[list['ParkingSiteGroup']] = relationship(
parking_site_group: Mapped['ParkingSiteGroup'] = relationship(
'ParkingSiteGroup',
back_populates='parking_sites',
)
Expand Down

0 comments on commit cf3b138

Please sign in to comment.