Compare commits

..

2 commits

Author SHA1 Message Date
925235f0d3 bump: version 0.7.0 → 0.7.1 2025-07-06 13:05:02 -05:00
454758560d fix: cap sqlalchemy version to 1.x
for now, since wuttjamaican allows 2.x but something is not working
right for sideshow.  requires further investigation i don't have time
for at the moment.
2025-07-06 13:04:14 -05:00
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,9 @@
## v0.7.1 (2025-07-06)
### Fix
- cap sqlalchemy version to 1.x
## v0.7.0 (2025-07-06)
### Feat

View file

@ -5,7 +5,7 @@ build-backend = "hatchling.build"
[project]
name = "Sideshow"
version = "0.7.0"
version = "0.7.1"
description = "Case/Special Order Tracker"
readme = "README.md"
authors = [
@ -32,6 +32,7 @@ classifiers = [
license = {text = "GNU General Public License v3+"}
requires-python = ">= 3.8"
dependencies = [
"SQLAlchemy<2", # TODO: should allow 2.x
"WuttaWeb>=0.22.0",
]