diff options
-rw-r--r-- | Makefile.example | 7 | ||||
-rw-r--r-- | version.py | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Makefile.example b/Makefile.example index 6d8214b3d..fd68cfe99 100644 --- a/Makefile.example +++ b/Makefile.example @@ -8,6 +8,7 @@ project=example_project # list used apps apps="ishtar_common" "archaeological_operations" "archaeological_context_records" "archaeological_files" "archaeological_finds" "archaeological_warehouse" "archaeological_files_pdl" default_data='fr' +version=`head -n 1 version.py | cut -d' ' -f2` help: # Actions available: @@ -51,7 +52,6 @@ coverage: clean archaeological_files_pdl" ./manage.py test $(apps) && coverage report build_gitlab: - # cd $(project); $(PYTHON) ./manage.py makemigrations auth -n ishtar_profile cd $(project); $(PYTHON) ./manage.py migrate test_gitlab: clean @@ -257,3 +257,8 @@ distribute_main: sdist deb: clean debuild -i -us -uc -b + +push_install: clean + tar cvjf install-ishtar-$(version).tar.bz2 install/ + scp install-ishtar-$(version).tar.bz2 root@git:/var/www/ishtar/install/ + rm install-ishtar-$(version).tar.bz2 diff --git a/version.py b/version.py index df76b8cc7..cf55cff12 100644 --- a/version.py +++ b/version.py @@ -1,4 +1,5 @@ -VERSION = (0, 99, 18, 1) +# 1.99.0 +VERSION = (1, 99, 0) def get_version(): |