From fd01a654eef725a1c4ae3d6ec4c1ab3e22bb55c8 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 11 Jun 2015 16:43:57 +0600 Subject: [PATCH] bumped to version 5.0.25 --- frappe/__version__.py | 2 +- frappe/hooks.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frappe/__version__.py b/frappe/__version__.py index 80acb89939..a077d2eae1 100644 --- a/frappe/__version__.py +++ b/frappe/__version__.py @@ -1,2 +1,2 @@ from __future__ import unicode_literals -__version__ = "5.0.24" +__version__ = "5.0.25" diff --git a/frappe/hooks.py b/frappe/hooks.py index fa2a16b0c1..a5e2389291 100644 --- a/frappe/hooks.py +++ b/frappe/hooks.py @@ -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.24" +app_version = "5.0.25" app_color = "orange" app_email = "support@frappe.io" diff --git a/setup.py b/setup.py index f1b3526624..589f8fb64f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = "5.0.24" +version = "5.0.25" with open("requirements.txt", "r") as f: install_requires = f.readlines()