From a4903835b3a9ab1cfd92a2a5d24c77dd1a8dc951 Mon Sep 17 00:00:00 2001 From: Tomy Hsieh Date: Sun, 1 Jan 2023 15:57:44 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20release:=200.15.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 d6103ca..f7eefb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9.15 -LABEL tech.tomy.docker.tubee="0.15.0" +LABEL tech.tomy.docker.tubee="0.15.1" LABEL maintainer="Tomy Hsieh @tomy0000000" WORKDIR /usr/src/tubee diff --git a/pyproject.toml b/pyproject.toml index 2e3c71d..6b48298 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ src_paths = ["tubee", "migrations"] [tool.poetry] name = "tubee" -version = "0.15.0" +version = "0.15.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 77bde5b..6fb5a25 100644 --- a/tubee/__init__.py +++ b/tubee/__init__.py @@ -22,7 +22,7 @@ from tubee.config import config -VERSION = "0.15.0" +VERSION = "0.15.1" db = SQLAlchemy() bcrypt = Bcrypt()