From 35b19cf94a6b1bc22cbdc7285e04d039715b1bd8 Mon Sep 17 00:00:00 2001 From: Tomy Hsieh Date: Fri, 22 Jul 2022 17:22:47 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20release:=200.10.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 +- pyproject.toml | 2 +- tubee/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index ef7aaf4..531ac38 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9 -LABEL tech.tomy.docker.tubee="0.10.0" +LABEL tech.tomy.docker.tubee="0.10.1" LABEL maintainer="Tomy Hsieh @tomy0000000" WORKDIR /usr/src/tubee diff --git a/pyproject.toml b/pyproject.toml index 1a4a924..97d4558 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ src_paths = ["tubee", "migrations"] [tool.poetry] name = "tubee" -version = "0.10.0" +version = "0.10.1" description = "A Web Application for Monitoring New YouTube Videos" license = "MIT License" authors = ["Tomy Hsieh "] diff --git a/tubee/__init__.py b/tubee/__init__.py index 4d5e36a..49b4e2f 100644 --- a/tubee/__init__.py +++ b/tubee/__init__.py @@ -18,7 +18,7 @@ from tubee.config import config from tubee.utils import build_sitemap -VERSION = "0.10.0" +VERSION = "0.10.1" db = SQLAlchemy() bcrypt = Bcrypt()