Bump to v39.0.2

This commit is contained in:
Changhua 2023-07-16 23:32:28 +08:00
parent 60be22aca5
commit bda368c488
7 changed files with 11 additions and 8 deletions

View File

@ -183,8 +183,8 @@ Rust 客户端。
## 版本更新
### v39.0.1 (2023.07.16)
* 获取朋友圈消息
### v39.0.2 (2023.07.16)
* 修复朋友圈消息 `is_group` 为 `True` 问题
<details><summary>点击查看更多</summary>
@ -196,6 +196,9 @@ Rust 客户端。
* `y` 是 `WeChatFerry` 的版本,从 0 开始
* `z` 是各客户端的版本,从 0 开始
### v39.0.1 (2023.07.16)
* 获取朋友圈消息
### v39.0.0 (2023.07.14)
升级到 `3.9.2.23`。

Binary file not shown.

View File

@ -51,7 +51,7 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 39,0,1,0
FILEVERSION 39,0,2,0
PRODUCTVERSION 3,9,2,23
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
@ -69,7 +69,7 @@ BEGIN
BEGIN
VALUE "CompanyName", "WeChatFerry"
VALUE "FileDescription", "WeChatFerry"
VALUE "FileVersion", "39.0.1.0"
VALUE "FileVersion", "39.0.2.0"
VALUE "InternalName", "spy.dll"
VALUE "LegalCopyright", "Copyright (C) 2023"
VALUE "OriginalFilename", "spy.dll"

View File

@ -33,7 +33,7 @@ setup(
"setuptools",
"fastapi",
"uvicorn[standard]",
"wcferry>=39.0.1.0",
"wcferry>=39.0.2.0",
],
classifiers=[
"Environment :: Win32 (MS Windows)",

View File

@ -12,7 +12,7 @@ from fastapi import Body, Query, FastAPI
from pydantic import BaseModel
from wcferry import Wcf, WxMsg
__version__ = "39.0.1.0"
__version__ = "39.0.2.0"
class Msg(BaseModel):

View File

@ -128,7 +128,7 @@ python -m grpc_tools.protoc --python_out=. --proto_path=../../../WeChatFerry/rpc
## 版本更新
### 39.0.1.0 (2023.07.16)
### 39.0.2.0 (2023.07.16)
* 获取朋友圈消息
<details><summary>点击查看更多</summary>

View File

@ -1,7 +1,7 @@
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
__version__ = "39.0.1.0"
__version__ = "39.0.2.0"
import atexit
import base64