Skip to content

Commit

Permalink
Bump version to 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
cyfdecyf committed May 12, 2015
1 parent 1d2faa4 commit f3ae2bf
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
0.9.5 (2015-05-12)
* Support new encryption method "chacha20" and "salsa20"
* Avoid biased parent proxy selection for hash load balacing
* Fix AirDrop on OS X when using PAC
* Fix failed start with corrupted stat file
* Support changing the estimate timeout target

0.9.4 (2014-10-08)
* Bug fix (#179): close stat file after load

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ COW 是一个简化穿墙的 HTTP 代理服务器。它能自动检测被墙网

[English README](README-en.md).

当前版本:0.9.4 [CHANGELOG](CHANGELOG)
当前版本:0.9.5 [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 @@ -121,14 +121,14 @@ COW 默认配置下检测到被墙后,过两分钟再次尝试直连也是为
- 不提供 cache
- 不支持 HTTP pipeline(Chrome, Firefox 默认都没开启 pipeline,支持这个功能容易增加问题而好处并不明显)

# 致谢
# 致谢 (Acknowledgements)

贡献代码:

- @tevino: http parent proxy basic authentication
- @xupefei: 提供 cow-hide.exe 以在 windows 上在后台执行 cow.exe
- @sunteya: 改进启动和安装脚本
- @fzerorubigd: identify blocked site by HTTP error code
- @fzerorubigd: identify blocked site by HTTP error code and various bug fixes

Bug reporter:

Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

const (
version = "0.9.4"
version = "0.9.5"
defaultListenAddr = "127.0.0.1:7777"
defaultEstimateTarget = "example.com"
)
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.9.4
version=0.9.5

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

0 comments on commit f3ae2bf

Please sign in to comment.