From 4f1371945dadffd5e0826dcef9543034ddac38df Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Tue, 20 May 2014 16:39:29 +0530 Subject: [PATCH 1/2] hotfix: frappe version in requirements.txt --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c20fc8cbc0..40ce1ea488 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ -frappe==4.0.0 +frappe==4.0.1 unidecode From 5873e50c5002c2b38265139beedca6e7d2dc5a0b Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Tue, 20 May 2014 16:42:01 +0530 Subject: [PATCH 2/2] Release 4.0.2 --- erpnext/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 1a3bef5327..4391764022 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -1 +1 @@ -__version__ = '4.0.1' +__version__ = '4.0.2' diff --git a/setup.py b/setup.py index bc1c8ad806..c62a6a84f7 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = '4.0.1' +version = '4.0.2' with open("requirements.txt", "r") as f: install_requires = f.readlines()