2
0
mirror of https://github.com/frappe/bench.git synced 2024-09-28 06:49:06 +00:00

chore: update version (#1138)

* chore: update version

* chore: use dev version on develop branch

* chore: move develop branch check before imports
This commit is contained in:
Mohammad Hasnain Mohsin Rajan 2021-03-18 13:57:21 +05:30 committed by GitHub
parent 8a7a532a45
commit 4c627e4531
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
VERSION = "5.2.1"
VERSION = "5.0.0-dev"
PROJECT_NAME = "frappe-bench"
FRAPPE_VERSION = None

View File

@ -87,6 +87,9 @@ def safe_decode(string, encoding = 'utf-8'):
def check_latest_version():
if bench.VERSION.endswith("dev"):
return
import requests
from semantic_version import Version