From 496c27141a639ccb276ae4f82243fb7559d2015a Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Tue, 20 May 2014 16:18:02 +0530 Subject: [PATCH] Release v4.0.1 --- frappe/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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()