Skip to content

Commit

Permalink
Bump version to 0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
cyfdecyf committed Dec 2, 2013
1 parent c5432c9 commit adc0b7e
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
0.9 (Not released)
0.9 (2013-12-02)
* New feature: two COW servers can be connected using encrypted
connection, thus we have an encrypted HTTP proxy chain that can
be used to bypass the firewall
* Allow client to use HTTP basic authentication
* Simplified configuration syntax
* Simplify configuration syntax
* Better reuse for HTTP parent connections
* Reduce direct/blocked delta
* Generate new PAC every minute

0.8 (2013-08-10)
* Share server connections between different clients
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

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

当前版本:0.9-rc1 [CHANGELOG](CHANGELOG)
当前版本:0.9 [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 @@ -18,7 +18,7 @@ COW 的设计目标是自动化,理想情况下用户无需关心哪些网站
- 自动生成包含直连网站的 PAC,访问这些网站时可绕过 COW
- 内置[常见可直连网站](site_direct.go),如国内社交、视频、银行、电商等网站(可手工添加)

# Quick Start
# 快速开始

安装:

Expand All @@ -27,7 +27,7 @@ COW 的设计目标是自动化,理想情况下用户无需关心哪些网站
curl -L git.io/cow | bash

- **Windows:** [点此下载](http://dl.chenyufei.info/cow/)
- 熟悉 Go 的用户可用 `go get` 从源码安装
- 熟悉 Go 的用户可用 `go get github.com/cyfdecyf/cow` 从源码安装

编辑 `~/.cow/rc` (Linux) 或 `rc.txt` (Windows),简单的配置例子如下:

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

const (
version = "0.9-rc1"
version = "0.9"
defaultListenAddr = "127.0.0.1:7777"
)

Expand Down
2 changes: 1 addition & 1 deletion doc/sample-config/rc
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ listen = http://127.0.0.1:7777
#
# authinfo 中指定加密方法和密码,所有支持的加密方法如下:
# aes-128-cfb, aes-192-cfb, aes-256-cfb,
# bf-cfb, cast5-cfb, des-cfb
# bf-cfb, cast5-cfb, des-cfb, table, rc4
# 推荐使用 aes-128-cfb
#
# cow:
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-rc1
version=0.9

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

0 comments on commit adc0b7e

Please sign in to comment.