From 245b5f76ac984896166aa165ac920eda385b58cf Mon Sep 17 00:00:00 2001 From: theonlyamos Date: Sun, 10 Sep 2023 14:12:09 +0000 Subject: [PATCH] bump to 0.2.5 --- runit/constants.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/runit/constants.py b/runit/constants.py index 2c8c5c0..ace36af 100644 --- a/runit/constants.py +++ b/runit/constants.py @@ -3,7 +3,7 @@ load_dotenv() -VERSION = "0.2.4" +VERSION = "0.2.5" CURRENT_PROJECT = "" NOT_FOUND_FILE = '404.html' DOT_RUNIT_IGNORE = '.runitignore' diff --git a/setup.py b/setup.py index 010f004..756d781 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.2.4' +VERSION = '0.2.5' with open('README.md', 'rt') as file: LONG_DESCRIPTION = file.read()