From 49419fc59edfbf9838ab1ffafac4ad5ddc77c6d6 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 28 Nov 2013 09:56:03 +0530 Subject: [PATCH 1/3] [minor] started versioning --- config.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config.json b/config.json index 17b01edb25..4578a88d86 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,7 @@ { "app_name": "ERPNext", + "app_verion": "3.0.0", + "requires_framework_version": "==3.0.0", "base_template": "app/portal/templates/base.html", "modules": { "Selling": { @@ -73,4 +75,4 @@ "icon": "icon-file-alt" } } -} \ No newline at end of file +} From 96a67ad4546427fac4ca4348e62a9205405ce837 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 28 Nov 2013 14:01:54 +0530 Subject: [PATCH 2/3] [minor] fix typo --- config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.json b/config.json index 4578a88d86..05918ef7eb 100644 --- a/config.json +++ b/config.json @@ -1,6 +1,6 @@ { "app_name": "ERPNext", - "app_verion": "3.0.0", + "app_version": "3.0.0", "requires_framework_version": "==3.0.0", "base_template": "app/portal/templates/base.html", "modules": { From 374461bbd1ae59318a2b9fb42ea69054efd192c4 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Thu, 28 Nov 2013 16:57:33 +0530 Subject: [PATCH 3/3] [minor] update install requirements --- install_erpnext.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install_erpnext.py b/install_erpnext.py index fe17e2f574..c95a03d3e5 100644 --- a/install_erpnext.py +++ b/install_erpnext.py @@ -28,7 +28,9 @@ requirements = [ "six", "slugify", "termcolor", - "werkzeug" + "werkzeug", + "semantic_version", + "gitpython==0.3.2.RC1" ] def install(install_path):