Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jweslley committed May 22, 2015
1 parent 053b89b commit c0c774b
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 2 deletions.
11 changes: 11 additions & 0 deletions .gobuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
author: "Jonhnny Weslley"
description: "A web server for developers"
filesets:
includes:
- README.md
- LICENSE
excludes:
- \.git
- .*\.go
settings:
build: go install -v
14 changes: 13 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
VERSION=0.1.0

all: tests

deps:
Expand All @@ -21,8 +23,18 @@ qa: build
go test -coverprofile=.bam.cover~
go tool cover -html=.bam.cover~

dist:
packer --os linux --arch amd64 --output localdns-linux-amd64-$(VERSION).zip
rm localdns
packer --os linux --arch 386 --output localdns-linux-386-$(VERSION).zip
rm localdns
packer --os darwin --arch amd64 --output localdns-mac-amd64-$(VERSION).zip
rm localdns
packer --os darwin --arch 386 --output localdns-mac-386-$(VERSION).zip
rm localdns

server:
./bam -config examples/bam.conf

clean:
rm -f ./bam ./examples/fileserver/fileserver ./examples/ping/ping
rm -f ./bam ./examples/fileserver/fileserver ./examples/ping/ping *.zip
2 changes: 1 addition & 1 deletion bam.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
)

const programName = "bam"
const programVersion = "0.0.1-alpha"
const programVersion = "0.1.0"

var configTemplates = make(map[string]string)

Expand Down

0 comments on commit c0c774b

Please sign in to comment.