Skip to content

Commit 7dbdf11

Browse files
committed
v0.9.2
1 parent 89235b3 commit 7dbdf11

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: windows-2022
1313
steps:
1414
- name: Setup python
15-
uses: actions/setup-python@v4
15+
uses: actions/setup-python@v5
1616
with:
1717
python-version: '3.12'
1818
architecture: x64
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Install dependencies
2121
run: |
2222
pip install pyinstaller dnspython[doh,doq] rich
@@ -26,7 +26,7 @@ jobs:
2626
pyinstaller accesser.spec
2727
env:
2828
PYTHONOPTIMIZE: 1
29-
- uses: actions/upload-artifact@v3
29+
- uses: actions/upload-artifact@v4
3030
with:
3131
name: windows
3232
path: ./dist/
@@ -35,11 +35,11 @@ jobs:
3535
runs-on: windows-2022
3636
steps:
3737
- name: Setup python
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: '3.12'
4141
architecture: x64
42-
- uses: actions/checkout@v3
42+
- uses: actions/checkout@v4
4343
- name: Install dependencies
4444
run: |
4545
pip install pyinstaller
@@ -50,7 +50,7 @@ jobs:
5050
pyinstaller accesser.spec
5151
env:
5252
PYTHONOPTIMIZE: 1
53-
- uses: actions/upload-artifact@v3
53+
- uses: actions/upload-artifact@v4
5454
with:
5555
name: windows-lite
5656
path: ./dist/

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-python@v5
1515
with:
16-
python-version: "3.x"
16+
python-version: ">=3.11"
1717
- run: |
1818
python3 -c 'import tomllib; tomllib.load(open("accesser/config.toml", "rb"))'

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Set up Python
16-
uses: actions/setup-python@v4
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: "3.x"
1919
- name: Install pypa/build
@@ -25,7 +25,7 @@ jobs:
2525
- name: Build a binary wheel and a source tarball
2626
run: python3 -m build
2727
- name: Store the distribution packages
28-
uses: actions/upload-artifact@v3
28+
uses: actions/upload-artifact@v4
2929
with:
3030
name: python-package-distributions
3131
path: dist/
@@ -46,7 +46,7 @@ jobs:
4646

4747
steps:
4848
- name: Download all the dists
49-
uses: actions/download-artifact@v3
49+
uses: actions/download-artifact@v4
5050
with:
5151
name: python-package-distributions
5252
path: dist/
@@ -70,7 +70,7 @@ jobs:
7070

7171
steps:
7272
- name: Download all the dists
73-
uses: actions/download-artifact@v3
73+
uses: actions/download-artifact@v4
7474
with:
7575
name: python-package-distributions
7676
path: dist/

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Because the main users of this project are in mainland China, you may encounter
1414

1515
## Usage
1616
### If you don't know what Python is
17-
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.
17+
Download Windows executable program from [here](https://github.com/URenko/Accesser/releases/download/v0.9.2/accesser.exe) and run it. The first time you use it, you will be asked to install a certificate, just select yes.
1818
### If Python 3.10* or later is already installed
1919
```
2020
pip3 install -U "accesser[doh,doq]"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

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

accesser/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# You should have received a copy of the GNU General Public License
1717
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1818

19-
__version__ = '0.9.1'
19+
__version__ = '0.9.2'
2020

2121
import os, sys
2222
import json
@@ -204,7 +204,7 @@ def update_checker():
204204

205205
async def main():
206206
global context, cert_store, cert_lock, DNSresolver
207-
print(f"Accesser v{__version__} Copyright (C) 2018-2023 URenko")
207+
print(f"Accesser v{__version__} Copyright (C) 2018-2024 URenko")
208208
setting.parse_args()
209209

210210
DNSresolver = dns.asyncresolver.Resolver(configure=False)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "accesser"
7-
version = "0.9.1"
7+
version = "0.9.2"
88
authors = [
99
{ name="URenko" },
1010
]

0 commit comments

Comments
 (0)