Skip to content

Commit 24ca98d

Browse files
committed
新增 scripts/release.sh 簡化發佈手續, 更新 changelog, manifest, ...
1 parent cd01003 commit 24ca98d

File tree

5 files changed

+276
-174
lines changed

5 files changed

+276
-174
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 0.6.4 (2015-01-14)
2+
3+
Features:
4+
5+
- merge some work from `webui-proc-graph` branch. ( by Chun-Yu Lee (Mat) )
6+
- API 新增 network/ 分類目錄
7+
- API 新增 process 資料
8+
9+
Bugfixes:
10+
11+
- Fix the header parsing of /proc/net/arp. Tokenize by multiple spaces now. ( by Blex Liao )
12+
113
## 0.6.3 (2014-12-11)
214

315
Features:

Makefile

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,15 @@ clean:
2020
rm -rf .tmp || true
2121
rm -rf sysd/sysd || true
2222

23-
Manifest: clean
24-
find . -type f | grep -v -e "^\./\.git" | sort | uniq > Manifest
23+
Manifest:
24+
find . -type f | grep -v -e "^\./\.git" \
25+
| grep -v -e "^\./\.gopath/" \
26+
| grep -v -e "^\./\.tmp/" \
27+
| grep -v -e "^\./sysd/sysd$$" \
28+
| grep -v -e "^\./pkg/tgz/" \
29+
| grep -v -e "^\./sysd-[0-9]\+\.[0-9]\+\.[0-9]\+.tar.gz$$" \
30+
| grep -v -e "^\./sysd-[0-9]\+\.[0-9]\+\.[0-9]\+/" \
31+
| sort | uniq > Manifest
2532

2633
dist:
2734
./scripts/tarball.sh || true

0 commit comments

Comments
 (0)