Skip to content

Commit

Permalink
Bump version to 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
cyfdecyf committed Jul 10, 2013
1 parent 88b71b6 commit 1886381
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
19 changes: 14 additions & 5 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.7.3 (2013-07-10)
* Handle 100-continue: do not forward expect header from client, ignore 100
continue response replied by some web servers
* For windows: add cow-hide.exe to run cow.exe as background process,
(provided by to xupefei)
* Filter sites covered by user specified domains on load
* Fix incorrectly changing header value to lower case: user name and
password can now contain upper case letters

0.7.2 (2013-07-01)
* Close idle server connections earlier: avoid opening too many sockets
* Support authenticating multiple users (can limit port for each user)
Expand Down Expand Up @@ -46,7 +55,7 @@

* Support parent HTTP proxy (such as goagent)
* Work more automatically: because of this, updateBlocked, updateDirect,
autoRetry options and chou file are removed
autoRetry options and chou file are removed
* Record direct/blocked visit count to make blocked/direct site handling
more reliable
* Builtin common blocked/direct site list
Expand All @@ -55,7 +64,7 @@
* Support specifying host in blocked/direct file
* User configurable timeout
* Better windows support: connection reset, timeout and DNS error detection
tested and works on XP
tested and works on XP
* Support listening multiple addresses
* Support IP based and user password authentication
* Various bug fixes
Expand All @@ -65,7 +74,7 @@
* Performance improvement by better buffer usage
* Allow specifying config file on command line
* Better windows support: Config and domain list file on windows are put in the same
directory as COW's binary. And they all have txt extension for easy editing
directory as COW's binary. And they all have txt extension for easy editing
* Bug fix: convert HTTP/1.0 response to HTTP/1.1

0.3.4 (2012-12-09)
Expand All @@ -75,10 +84,10 @@
* Allow specifying ssh server port in config file
* Bug fix: crash when handling flush error
* Bug fix: correctly handle web servers which use closed connection to
indicate end of response
indicate end of response

0.3.3 (2012-12-05)

* Keep HTTP CONNECT connection open. Avoid problems for Application which
uses long connection.
uses long connection.
* Bug fix: crash when printing domain list inconsistency message.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

COW 是一个利用二级代理自动化穿越防火墙的 HTTP 代理服务器。它能自动检测被墙网站,仅对这些网站使用二级代理。

当前版本:0.7.2 [CHANGELOG](CHANGELOG)
当前版本:0.7.3 [CHANGELOG](CHANGELOG)
[![Build Status](https://travis-ci.org/cyfdecyf/cow.png?branch=develop)](https://travis-ci.org/cyfdecyf/cow)

**欢迎在 develop branch 进行开发并发送 pull request :)**
Expand Down Expand Up @@ -109,8 +109,9 @@ COW 默认配置下检测到被墙后,过两分钟再次尝试直连也是为
@tevino: http parent proxy basic authentication
@xupefei: 提供 cow-hide.exe 以在 windows 上在后台执行 cow.exe

Bug reporter (github user name):
Bug reporter:

@glacjay, @trawor, @Blaskyy, @lucifer9, @zellux, @xream, @hieixu, @fantasticfears, @perrywky, @JayXon, @graminc, @WingGao, @polong
GitHub users: glacjay, trawor, Blaskyy, lucifer9, zellux, xream, hieixu, fantasticfears, perrywky, JayXon, graminc, WingGao, polong, dallascao
Twitter users: @shao222

@glacjay 对 0.3 版本的 COW 提出了让它更加自动化的建议,使我重新考虑 COW 的设计目标并且改进成 0.5 版本之后的工作方式。
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
)

const (
version = "0.7.2"
version = "0.7.3"
defaultListenAddr = "127.0.0.1:7777"
)

Expand Down
2 changes: 1 addition & 1 deletion install-cow.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

version=0.7.2
version=0.7.3

arch=`uname -m`
case $arch in
Expand Down

0 comments on commit 1886381

Please sign in to comment.