Merge branch 'develop'

This commit is contained in:
Anand Doshi 2015-12-11 23:46:05 +05:30
commit d53d534483
5 changed files with 5 additions and 3 deletions

View file

@ -1,2 +1,2 @@
from __future__ import unicode_literals
__version__ = "6.13.3"
__version__ = "6.13.4"

View file

@ -5,7 +5,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd."
app_description = "Full stack web framework with Python, Javascript, MariaDB, Redis, Node"
app_icon = "octicon octicon-circuit-board"
app_version = "6.13.3"
app_version = "6.13.4"
app_color = "orange"
source_link = "https://github.com/frappe/frappe"
app_license = "MIT"

View file

@ -273,6 +273,7 @@ def make_site_dirs():
for dir_path in (
os.path.join(site_private_path, 'backups'),
os.path.join(site_public_path, 'files'),
os.path.join(site_private_path, 'files'),
os.path.join(frappe.local.site_path, 'task-logs')):
if not os.path.exists(dir_path):
os.makedirs(dir_path)

View file

@ -107,3 +107,4 @@ frappe.patches.v6_6.rename_slovak_language
frappe.patches.v6_6.fix_file_url
frappe.patches.v6_9.rename_burmese_language
frappe.patches.v6_11.rename_field_in_email_account
execute:frappe.create_folder(os.path.join(frappe.local.site_path, 'private', 'files'))

View file

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
from pip.req import parse_requirements
version = "6.13.3"
version = "6.13.4"
requirements = parse_requirements("requirements.txt", session="")
setup(