diff --git a/frappe/__init__.py b/frappe/__init__.py index e40ee6434f..89d71ce19e 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -16,7 +16,7 @@ import json from .exceptions import * -__version__ = "4.0.0" +__version__ = "4.0.1" local = Local() diff --git a/setup.py b/setup.py index f7c96349ac..0b8c925f7c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '4.0.0' +version = '4.0.1' with open("requirements.txt", "r") as f: install_requires = f.readlines()