Bladeren bron

Merge branch 'develop'

version-14
Nabin Hait 10 jaren geleden
bovenliggende
commit
e110967170
4 gewijzigde bestanden met toevoegingen van 4 en 4 verwijderingen
  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 Bestand weergeven

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

+ 1
- 1
frappe/hooks.py Bestand weergeven

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


app_email = "support@frappe.io" app_email = "support@frappe.io"


+ 1
- 1
frappe/model/db_query.py Bestand weergeven

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


# share is an OR condition, if there is a role permission # share is an OR condition, if there is a role permission
if not only_if_shared and self.shared: 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: if as_condition:
conditions = "" conditions = ""


+ 1
- 1
setup.py Bestand weergeven

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


version = "5.0.30"
version = "5.0.31"


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


Laden…
Annuleren
Opslaan