From d2b650838ecc74aa809189bc80f20979d7d9170c Mon Sep 17 00:00:00 2001 From: Faris Ansari Date: Fri, 19 May 2017 19:13:21 +0530 Subject: [PATCH 1/2] Remove use strict from js files (#3352) --- frappe/build.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frappe/build.js b/frappe/build.js index 4c271bc1e2..8c3dccc182 100644 --- a/frappe/build.js +++ b/frappe/build.js @@ -103,6 +103,8 @@ function pack(output_path, inputs, minify) { output_txt += `\n/*\n *\t${file}\n */\n` } output_txt += file_content; + + output_txt = output_txt.replace(/['"]use strict['"];/, ''); } const target = p(assets_path, output_path); From a08b6cff664287494beece59d4763535713b8986 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 19 May 2017 20:23:11 +0600 Subject: [PATCH 2/2] bumped to version 8.0.52 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 5bd272df28..d6230c3030 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -13,7 +13,7 @@ import os, sys, importlib, inspect, json from .exceptions import * from .utils.jinja import get_jenv, get_template, render_template -__version__ = '8.0.51' +__version__ = '8.0.52' __title__ = "Frappe Framework" local = Local()