Skip to content

Commit

Permalink
Bump version to 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
cyfdecyf committed Aug 10, 2013
1 parent fa47ada commit 7209fd4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 11 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
0.8 (not released)
0.8 (2013-08-10)
* Share server connections between different clients
* Add tunnelAllowedPort option to limit ports CONNECT method can connect to
* Avoid timeout too soon for frequently visited direct sites
* Fix reporting malformed requests when authenticating requests with body
* Fix reporting malformed requests in two cases when request has body:
- Authenticate requests
- Error occured before request is sent
* Support multi-lined headers
* Change client connection timeout to 15s
* Change as direct delta to 15
* Provide ARMv5 binary

0.7.6 (2013-07-28)
* Fix bug for close connection response with no body
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

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

**欢迎在 develop branch 进行开发并发送 pull request :)**
Expand All @@ -24,7 +24,7 @@ COW 的设计目标是自动化,理想情况下用户无需关心哪些网站

- **OS X, Linux:** 执行以下命令(也可用于更新)

curl -s -L https://github.com/cyfdecyf/cow/raw/master/install-cow.sh | bash
curl -L git.io/cow | bash

- 该安装脚本在 OS X 上可将 COW 设置为登录时启动
- [Linux 启动脚本](doc/init.d/cow),如何使用请参考注释(Debian 测试通过,其他 Linux 发行版应该也可使用)
Expand Down Expand Up @@ -106,13 +106,12 @@ COW 默认配置下检测到被墙后,过两分钟再次尝试直连也是为

贡献代码:

@tevino: http parent proxy basic authentication
@xupefei: 提供 cow-hide.exe 以在 windows 上在后台执行 cow.exe
- @tevino: http parent proxy basic authentication
- @xupefei: 提供 cow-hide.exe 以在 windows 上在后台执行 cow.exe

Bug reporter:

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

Twitter users: 特别感谢 @shao222 多次帮助测试新版并报告了不少 bug, @xixitalk
- GitHub users: glacjay, trawor, Blaskyy, lucifer9, zellux, xream, hieixu, fantasticfears, perrywky, JayXon, graminc, WingGao, polong, dallascao
- Twitter users: 特别感谢 @shao222 多次帮助测试新版并报告了不少 bug, @xixitalk

@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.6"
version = "0.8"
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.6
version=0.8

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

0 comments on commit 7209fd4

Please sign in to comment.