Skip to content

Commit

Permalink
v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
URenko committed Jan 20, 2024
1 parent 5b37cf5 commit 847b0da
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ name: Auto build for windows
on:
push:
branches: [ '*' ]
tags: [ 'v*.*.*' ]
pull_request:
branches: [ '*' ]

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Publish Python 🐍 distribution 📦 to PyPI and TestPyPI

on:
push:
tags: [ 'v*.*.*' ]
workflow_dispatch:

jobs:
Expand Down
4 changes: 2 additions & 2 deletions README.en.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ Because the main users of this project are in mainland China, you may encounter

## Usage
### If you don't know what Python is
Download Windows executable program from [here](https://github.com/URenko/Accesser/releases/download/v0.9.0/accesser.exe) and run it. The first time you use it, you will be asked to install a certificate, just select yes.
Download Windows executable program from [here](https://github.com/URenko/Accesser/releases/download/v0.9.1/accesser.exe) and run it. The first time you use it, you will be asked to install a certificate, just select yes.
### If Python 3.10* or later is already installed
```
pip3 install -U accesser[doh,doq]
pip3 install -U "accesser[doh,doq]"
```
If you don't need DNS-over-HTTPS and DNS-over-QUIC, you can install without `[doh,doq]`.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@

## 使用
### 如果不知道什么是Python
[这里](https://github.com/URenko/Accesser/releases/download/v0.9.0/accesser.exe)下载Windows一键程序,运行既可(建议关闭其他代理软件),首次使用会要求安装证书,选是即可。
[这里](https://github.com/URenko/Accesser/releases/download/v0.9.1/accesser.exe)下载Windows一键程序,运行既可(建议关闭其他代理软件),首次使用会要求安装证书,选是即可。
### 如果已经安装了Python 3.10*或更高版本
```
pip3 install -U accesser[doh,doq]
pip3 install -U "accesser[doh,doq]"
```
如果你不需要 DNS-over-HTTPS 和 DNS-over-QUIC,则可以不用带`[doh,doq]`

Expand Down
2 changes: 1 addition & 1 deletion accesser/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

__version__ = '0.9.0'
__version__ = '0.9.1'

import os, sys
import json
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "accesser"
version = "0.9.0"
version = "0.9.1"
authors = [
{ name="URenko" },
]
Expand Down

0 comments on commit 847b0da

Please sign in to comment.