From 6855d9481683c79e71b0c64ce144c93bdc0f47ac Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Wed, 16 Feb 2022 10:26:24 +0100 Subject: [PATCH] Version 0.1.4 (#53) --- README.md | 2 +- docs/index.md | 2 +- setup.cfg | 2 +- sqladmin/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1829efaa..a48e8619 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ --- -# SQLAlchemy Admin dashboard for Starlette/FastAPI +# SQLAlchemy Admin for Starlette/FastAPI SQLAdmin is a flexible Admin interface for SQLAlchemy models. diff --git a/docs/index.md b/docs/index.md index 1829efaa..a48e8619 100644 --- a/docs/index.md +++ b/docs/index.md @@ -24,7 +24,7 @@ --- -# SQLAlchemy Admin dashboard for Starlette/FastAPI +# SQLAlchemy Admin for Starlette/FastAPI SQLAdmin is a flexible Admin interface for SQLAlchemy models. diff --git a/setup.cfg b/setup.cfg index 43a2c04e..9058e63e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = sqladmin -version = 0.1.3 +version = 0.1.4 author = Amin Alaee author_email = mohammadamin.alaee@gmail.com description = Admin interface for SQLAlchemy. diff --git a/sqladmin/__init__.py b/sqladmin/__init__.py index 268bc35c..947a4bc6 100644 --- a/sqladmin/__init__.py +++ b/sqladmin/__init__.py @@ -1,7 +1,7 @@ from sqladmin.application import Admin from sqladmin.models import ModelAdmin -__version__ = "0.1.3" +__version__ = "0.1.4" __all__ = [ "Admin",