Skip to content

Commit b0107f5

Browse files
author
Bjoern Rabenstein
committed
Added CHANGELOG.md and VERSION.
1 parent d7f8eb1 commit b0107f5

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## 0.1.0 / 2015-02-02
2+
* [CLEANUP] Introduced semantic versioning and changelog. From now on,
3+
changes will be reported in this file.
4+

Makefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
# See the License for the specific language governing permissions and
1212
# limitations under the License.
1313

14+
VERSION=$(shell cat `git rev-parse --show-toplevel`/VERSION)
15+
1416
OS = $(shell uname)
1517
ARCH = $(shell uname -m)
1618

@@ -89,7 +91,11 @@ advice: test
8991
$(GO) vet ./...
9092

9193
format:
92-
find . -iname '*.go' | grep -v './.build/' | xargs -n1 -P1 $(GOFMT) -w -s=true
94+
find . -iname '*.go' | grep -vE '^./(.build|_vendor)/' | xargs -n1 -P1 $(GOFMT) -w -s=true
95+
96+
tag:
97+
git tag $(VERSION)
98+
git push --tags
9399

94100
search_index:
95101
$(GODOC) -index -write_index -index_files='search_index'

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.1.0

0 commit comments

Comments
 (0)