File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
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
+
Original file line number Diff line number Diff line change 11
11
# See the License for the specific language governing permissions and
12
12
# limitations under the License.
13
13
14
+ VERSION =$(shell cat `git rev-parse --show-toplevel`/VERSION)
15
+
14
16
OS = $(shell uname)
15
17
ARCH = $(shell uname -m)
16
18
@@ -89,7 +91,11 @@ advice: test
89
91
$(GO ) vet ./...
90
92
91
93
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
93
99
94
100
search_index :
95
101
$(GODOC ) -index -write_index -index_files=' search_index'
Original file line number Diff line number Diff line change
1
+ 0.1.0
You can’t perform that action at this time.
0 commit comments