Skip to content

Commit 5924a7f

Browse files
committed
Update Changelog for next release
1 parent 1829021 commit 5924a7f

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# CHANGELOG
22

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+
310
## 1.2.1 - 2015-11-02
411

512
* Now supporting negative offsets when seeking to SEEK_END.

Makefile

+16
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,21 @@ coverage:
99
view-coverage:
1010
open artifacts/coverage/index.html
1111

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+
1228
clean:
1329
rm -rf artifacts/*

0 commit comments

Comments
 (0)