From 8a4d904b85a1f933ccd2f13c8afdae62469597e6 Mon Sep 17 00:00:00 2001 From: Tomy Hsieh Date: Fri, 2 Dec 2022 23:32:57 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20release:=200.14.0?= 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 f000b19..ae8205d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9.6 -LABEL tech.tomy.docker.tubee="0.13.1" +LABEL tech.tomy.docker.tubee="0.14.0" LABEL maintainer="Tomy Hsieh @tomy0000000" WORKDIR /usr/src/tubee diff --git a/pyproject.toml b/pyproject.toml index 60955c1..de77ba8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ src_paths = ["tubee", "migrations"] [tool.poetry] name = "tubee" -version = "0.13.1" +version = "0.14.0" 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 d9093e9..7ac026c 100644 --- a/tubee/__init__.py +++ b/tubee/__init__.py @@ -16,7 +16,7 @@ from tubee.config import config -VERSION = "0.13.1" +VERSION = "0.14.0" db = SQLAlchemy() bcrypt = Bcrypt()