Bump version

This commit is contained in:
Stéphane Bidoul 2021-10-28 18:54:12 +02:00
parent 9982c80b41
commit 5ee536076f
No known key found for this signature in database
GPG key ID: BCAB2555446B5B92
2 changed files with 6 additions and 4 deletions

View file

@ -1,2 +1,2 @@
"""A simple runbot lookalike using kubernetes."""
__version__ = "0.1"
"""A simple Odoo runbot lookalike using kubernetes."""
__version__ = "0.2"

View file

@ -1,8 +1,10 @@
from fastapi import FastAPI
from . import api, controller, k8s, webhooks
from . import __version__, api, controller, k8s, webhooks
app = FastAPI(title="Runboat", description="Runbot on Kubernetes ☸️")
app = FastAPI(
title="Runboat", description="Runbot on Kubernetes ☸️", version=__version__
)
app.include_router(api.router)
app.include_router(webhooks.router)