mirror of https://github.com/nicolargo/glances.git
Add release-note in the Makefile
This commit is contained in:
parent
5d918cd794
commit
55a3a13d89
10
Makefile
10
Makefile
|
|
@ -1,4 +1,5 @@
|
|||
PORT?=8008
|
||||
LASTTAG = $(shell git describe --tags --abbrev=0)
|
||||
|
||||
install:
|
||||
sensible-browser "https://github.com/nicolargo/glances#installation"
|
||||
|
|
@ -23,8 +24,10 @@ venv-upgrade:
|
|||
./venv/bin/pip install --upgrade -r requirements.txt
|
||||
./venv/bin/pip install --upgrade -r optional-requirements.txt
|
||||
|
||||
test:
|
||||
./unitest-all.sh
|
||||
test: venv
|
||||
./venv/bin/python ./unitest.py
|
||||
./venv/bin/python ./unitest-restful.py
|
||||
./venv/bin/python ./unitest-xmlrpc.py
|
||||
|
||||
docs: venv-dev
|
||||
cd docs && ./build.sh
|
||||
|
|
@ -54,4 +57,7 @@ run-client: venv
|
|||
profiling: venv venv-dev
|
||||
@echo "Please complete and run: sudo ./venv/bin/py-spy record -o ./docs/_static/glances-flame.svg -d 60 -s --pid <GLANCES PID>"
|
||||
|
||||
release-note:
|
||||
git log $(LASTTAG)..HEAD --pretty=format:"%s (%an)"
|
||||
|
||||
.PHONY: test docs docs-server
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.\" Man page generated from reStructuredText.
|
||||
.
|
||||
.TH "GLANCES" "1" "Jun 05, 2021" "3.2.0b0" "Glances"
|
||||
.TH "GLANCES" "1" "Jun 12, 2021" "3.2.0b2" "Glances"
|
||||
.SH NAME
|
||||
glances \- An eye on your system
|
||||
.
|
||||
|
|
|
|||
Loading…
Reference in New Issue