Skip to content

Commit

Permalink
新增 scripts/release.sh 簡化發佈手續, 更新 changelog, manifest, ...
Browse files Browse the repository at this point in the history
  • Loading branch information
matlinuxer2 committed Jan 14, 2015
1 parent cd01003 commit 24ca98d
Show file tree
Hide file tree
Showing 5 changed files with 276 additions and 174 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## 0.6.4 (2015-01-14)

Features:

- merge some work from `webui-proc-graph` branch. ( by Chun-Yu Lee (Mat) )
- API 新增 network/ 分類目錄
- API 新增 process 資料

Bugfixes:

- Fix the header parsing of /proc/net/arp. Tokenize by multiple spaces now. ( by Blex Liao )

## 0.6.3 (2014-12-11)

Features:
Expand Down
11 changes: 9 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,15 @@ clean:
rm -rf .tmp || true
rm -rf sysd/sysd || true

Manifest: clean
find . -type f | grep -v -e "^\./\.git" | sort | uniq > Manifest
Manifest:
find . -type f | grep -v -e "^\./\.git" \
| grep -v -e "^\./\.gopath/" \
| grep -v -e "^\./\.tmp/" \
| grep -v -e "^\./sysd/sysd$$" \
| grep -v -e "^\./pkg/tgz/" \
| grep -v -e "^\./sysd-[0-9]\+\.[0-9]\+\.[0-9]\+.tar.gz$$" \
| grep -v -e "^\./sysd-[0-9]\+\.[0-9]\+\.[0-9]\+/" \
| sort | uniq > Manifest

dist:
./scripts/tarball.sh || true
Expand Down
Loading

0 comments on commit 24ca98d

Please sign in to comment.