diff --git a/Dockerfile b/Dockerfile index 90dc883..d6103ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.9.15 -LABEL tech.tomy.docker.tubee="0.14.0" +LABEL tech.tomy.docker.tubee="0.15.0" LABEL maintainer="Tomy Hsieh @tomy0000000" WORKDIR /usr/src/tubee diff --git a/pyproject.toml b/pyproject.toml index 37b32c6..a4c30f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ src_paths = ["tubee", "migrations"] [tool.poetry] name = "tubee" -version = "0.14.0" +version = "0.15.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 05c7df0..77bde5b 100644 --- a/tubee/__init__.py +++ b/tubee/__init__.py @@ -22,7 +22,7 @@ from tubee.config import config -VERSION = "0.14.0" +VERSION = "0.15.0" db = SQLAlchemy() bcrypt = Bcrypt()