chore(release): prepare v0.9.1
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
"""Proxmox AIS: controlled installation and post-installation provisioning."""
|
||||
|
||||
__version__ = "0.1.0"
|
||||
__version__ = "0.9.1"
|
||||
|
||||
+2
-1
@@ -21,6 +21,7 @@ from fastapi.templating import Jinja2Templates
|
||||
import jsonschema
|
||||
from pydantic import ValidationError
|
||||
|
||||
from . import __version__
|
||||
from .config import Settings
|
||||
from .db import Database
|
||||
from .models import (Approval, Completion, Enroll, EventBatch, GroupCreate, HostCreate, HostUpdate, IsoCreate, LeaseRequest, LogBatch, ModuleCreate, ProfileCreate, Publish, RunAction, RunReconcile, SecretCreate, UserCreate, normalize_identity)
|
||||
@@ -107,7 +108,7 @@ def create_app(settings: Settings | None = None):
|
||||
except asyncio.CancelledError:
|
||||
pass
|
||||
|
||||
app = FastAPI(title="Proxmox AIS", version="0.1.0", description="Kontrollierte Proxmox-Installation und wiederaufnehmbare Nachkonfiguration.", lifespan=lifespan, docs_url=None, redoc_url=None, openapi_url=None)
|
||||
app = FastAPI(title="Proxmox AIS", version=__version__, description="Kontrollierte Proxmox-Installation und wiederaufnehmbare Nachkonfiguration.", lifespan=lifespan, docs_url=None, redoc_url=None, openapi_url=None)
|
||||
app.state.db, app.state.settings, app.state.security, app.state.service = db, settings, security, service
|
||||
app.add_middleware(RequestGuards, max_bytes=settings.max_request_bytes)
|
||||
(ASSETS / "static").mkdir(exist_ok=True)
|
||||
|
||||
Reference in New Issue
Block a user