diff --git a/frappe/__version__.py b/frappe/__version__.py index 16b7fe8596..6800025a9e 100644 --- a/frappe/__version__.py +++ b/frappe/__version__.py @@ -1,2 +1,2 @@ from __future__ import unicode_literals -__version__ = "4.13.2" +__version__ = "4.13.3" diff --git a/frappe/hooks.py b/frappe/hooks.py index a9ac1a9ddf..7efaea3270 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -4,7 +4,7 @@ app_title = "Frappe Framework" app_publisher = "Web Notes Technologies Pvt. Ltd." app_description = "Full Stack Web Application Framework in Python" app_icon = "assets/frappe/images/frappe.svg" -app_version = "4.13.2" +app_version = "4.13.3" app_color = "#3498db" app_email = "support@frappe.io" diff --git a/setup.py b/setup.py index cececb1e75..c64e13ff99 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from setuptools import setup, find_packages import os -version = "4.13.2" +version = "4.13.3" with open("requirements.txt", "r") as f: install_requires = f.readlines()