File tree 2 files changed +23
-0
lines changed
2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
3
+ ## next release
4
+
5
+ * Added support for URIs without any authority.
6
+ * Added support for HTTP 451 'Unavailable For Legal Reasons.'
7
+ * Added support for using '0' as a filename.
8
+ * Added support for including non-standard ports in Host headers.
9
+
3
10
## 1.2.1 - 2015-11-02
4
11
5
12
* Now supporting negative offsets when seeking to SEEK_END.
Original file line number Diff line number Diff line change @@ -9,5 +9,21 @@ coverage:
9
9
view-coverage :
10
10
open artifacts/coverage/index.html
11
11
12
+ check-tag :
13
+ $(if $(TAG ) ,,$(error TAG is not defined. Pass via "make tag TAG=4.2.1") )
14
+
15
+ tag : check-tag
16
+ @echo Tagging $(TAG )
17
+ chag update $(TAG )
18
+ git commit -a -m ' $(TAG) release'
19
+ chag tag
20
+ @echo " Release has been created. Push using 'make release'"
21
+ @echo " Changes made in the release commit"
22
+ git diff HEAD~1 HEAD
23
+
24
+ release : check-tag
25
+ git push origin master
26
+ git push origin $(TAG )
27
+
12
28
clean :
13
29
rm -rf artifacts/*
You can’t perform that action at this time.
0 commit comments