Merge branch 'develop'

This commit is contained in:
Anand Doshi 2015-10-19 19:10:35 +05:30
commit 4e38260945
5 changed files with 6 additions and 5 deletions

View file

@ -1,2 +1,2 @@
from __future__ import unicode_literals
__version__ = "6.5.1"
__version__ = "6.5.2"

View file

@ -26,7 +26,7 @@ to ERPNext.
"""
app_icon = "octicon octicon-circuit-board"
app_version = "6.5.1"
app_version = "6.5.2"
app_color = "orange"
github_link = "https://github.com/frappe/frappe"

View file

@ -218,7 +218,7 @@ $.extend(frappe.model, {
}
return frappe.call({
type: "GET",
type: "POST",
method: opts.method,
args: {
"source_name": opts.source_name

View file

@ -125,7 +125,8 @@ frappe.request.call = function(opts) {
type: opts.type,
dataType: opts.dataType || 'json',
async: opts.async,
headers: { "X-Frappe-CSRF-Token": frappe.csrf_token }
headers: { "X-Frappe-CSRF-Token": frappe.csrf_token },
cache: false
};
frappe.last_request = ajax_args.data;

View file

@ -1,6 +1,6 @@
from setuptools import setup, find_packages
version = "6.5.1"
version = "6.5.2"
with open("requirements.txt", "r") as f:
install_requires = f.readlines()