From 52c5121ecd30766186b8e74dabad9dd0aa640e64 Mon Sep 17 00:00:00 2001 From: Pratik Vyas Date: Tue, 17 Mar 2015 11:22:16 +0530 Subject: [PATCH] change version to v5.0.0-beta --- erpnext/__version__.py | 2 +- erpnext/hooks.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/erpnext/__version__.py b/erpnext/__version__.py index ce4a1b3e08e..106369e28ac 100644 --- a/erpnext/__version__.py +++ b/erpnext/__version__.py @@ -1,2 +1,2 @@ from __future__ import unicode_literals -__version__ = '5.0.0-alpha' +__version__ = '5.0.0-beta' diff --git a/erpnext/hooks.py b/erpnext/hooks.py index 0ae7ce20d39..64d8a3ee4c0 100644 --- a/erpnext/hooks.py +++ b/erpnext/hooks.py @@ -5,7 +5,7 @@ app_publisher = "Frappe Technologies Pvt. Ltd. and Contributors" app_description = "Open Source Enterprise Resource Planning for Small and Midsized Organizations" app_icon = "icon-th" app_color = "#e74c3c" -app_version = "5.0.0-alpha" +app_version = "5.0.0-beta" error_report_email = "support@erpnext.com" diff --git a/setup.py b/setup.py index 0ca3ff61801..8ac87b9c72a 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = "5.0.0-alpha" +version = "5.0.0-beta" with open("requirements.txt", "r") as f: install_requires = f.readlines()