Frappe ERPNext - app version change

How to change version info on your Frappe Custom app.

 · 1 min read

How to Use Git and GitHub – Version Control Basics for Beginners


 On file __init__.py

__version__ = '2.0.1'



and on hooks.py file add following two lines


from frappe import _

from . import __version__ as app_version



Before pushing to GitHub

git tag -a v2.0.1 -m "Version 2.0.1"

git push origin --tags


After that you commit and push as always.



Thahsin

Functional Consultant at ERPGulf

No comments yet

No comments yet. Start a new discussion.

Add Comment