refactor and rewrite for asyncio

This commit is contained in:
2026-02-06 12:34:59 -05:00
parent 700ea8d6a4
commit 4df700e4ef
54 changed files with 772 additions and 4334 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/sh
uv version --bump patch
VER=$(uv version --short)
sed -i "s/__version__ = \"[0-9.]*\"\(.*\)$/__version__ = \"$VER\"\1/" moninbox/const.py
# commit pyproject.toml
git commit -m "version $VER" pyproject.toml moninbox/const.py
git push
# tag version
git tag -a v$VER -m "Version $VER"
git push --tags