Ver código fonte

Merge branch 'develop'

version-14
Nabin Hait 10 anos atrás
pai
commit
e110967170
4 arquivos alterados com 4 adições e 4 exclusões
  1. +1
    -1
      frappe/__version__.py
  2. +1
    -1
      frappe/hooks.py
  3. +1
    -1
      frappe/model/db_query.py
  4. +1
    -1
      setup.py

+ 1
- 1
frappe/__version__.py Ver arquivo

@@ -1,2 +1,2 @@
from __future__ import unicode_literals
__version__ = "5.0.30"
__version__ = "5.0.31"

+ 1
- 1
frappe/hooks.py Ver arquivo

@@ -4,7 +4,7 @@ app_title = "Frappe Framework"
app_publisher = "Frappe Technologies Pvt. Ltd."
app_description = "Full Stack Web Application Framework in Python"
app_icon = "octicon octicon-circuit-board"
app_version = "5.0.30"
app_version = "5.0.31"
app_color = "orange"

app_email = "support@frappe.io"


+ 1
- 1
frappe/model/db_query.py Ver arquivo

@@ -297,7 +297,7 @@ class DatabaseQuery(object):

# share is an OR condition, if there is a role permission
if not only_if_shared and self.shared:
self.match_conditions.append(" or {0}".format(self.get_share_condition()))
self.match_conditions.append(self.get_share_condition())

if as_condition:
conditions = ""


+ 1
- 1
setup.py Ver arquivo

@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = "5.0.30"
version = "5.0.31"

with open("requirements.txt", "r") as f:
install_requires = f.readlines()


Carregando…
Cancelar
Salvar