From 65a27395fe6772b513a1aada0347b6922ef30112 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 19 May 2017 14:53:32 +0530 Subject: [PATCH 1/3] [minor] remove student batch name from activation.py --- erpnext/utilities/activation.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/erpnext/utilities/activation.py b/erpnext/utilities/activation.py index 0b73d3e5b6f..1ae92c121f0 100644 --- a/erpnext/utilities/activation.py +++ b/erpnext/utilities/activation.py @@ -37,9 +37,6 @@ def get_level(): if frappe.db.count('Student') > 5: activation_level += 1 - if frappe.db.count('Student Batch Name') > 5: - activation_level += 1 - if frappe.db.count('Instructor') > 5: activation_level += 1 From 04ea4910f0affbe4004e496034a56a9513043d54 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 19 May 2017 18:26:49 +0530 Subject: [PATCH 2/3] [rename] zh-tw -> zh-TW --- erpnext/translations/{zh-tw.csv => zh-TW.csv} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename erpnext/translations/{zh-tw.csv => zh-TW.csv} (100%) diff --git a/erpnext/translations/zh-tw.csv b/erpnext/translations/zh-TW.csv similarity index 100% rename from erpnext/translations/zh-tw.csv rename to erpnext/translations/zh-TW.csv From d2484ece2415ec1b3688a975f544de1a70919c97 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 19 May 2017 19:03:54 +0600 Subject: [PATCH 3/3] bumped to version 8.0.32 --- erpnext/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/__init__.py b/erpnext/__init__.py index 97a2c73ded7..35952377c1a 100644 --- a/erpnext/__init__.py +++ b/erpnext/__init__.py @@ -2,7 +2,7 @@ from __future__ import unicode_literals import frappe -__version__ = '8.0.31' +__version__ = '8.0.32' def get_default_company(user=None):