diff --git a/runit_server/constants.py b/runit_server/constants.py index 34c9d09..13e46ff 100644 --- a/runit_server/constants.py +++ b/runit_server/constants.py @@ -4,7 +4,7 @@ from dotenv import find_dotenv, load_dotenv from pathlib import Path -VERSION = "0.4.1" +VERSION = "0.4.2" CURRENT_PROJECT = "" NOT_FOUND_FILE = '404.html' DOT_RUNIT_IGNORE = '.runitignore' diff --git a/setup.py b/setup.py index 6184af3..cebb751 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from importlib.metadata import entry_points from setuptools import setup, find_packages -VERSION = "0.4.1" +VERSION = "0.4.2" with open('README.md', 'rt') as file: description = file.read()