diff --git a/README.MD b/README.MD index 5a6700a..17c6b97 100644 --- a/README.MD +++ b/README.MD @@ -183,8 +183,8 @@ Rust 客户端。 ## 版本更新 -### v39.0.1 (2023.07.16) -* 获取朋友圈消息 +### v39.0.2 (2023.07.16) +* 修复朋友圈消息 `is_group` 为 `True` 问题
点击查看更多 @@ -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`。 diff --git a/WeChatFerry/spy/spy.aps b/WeChatFerry/spy/spy.aps index 9d97a03..3c8ea0e 100644 Binary files a/WeChatFerry/spy/spy.aps and b/WeChatFerry/spy/spy.aps differ diff --git a/WeChatFerry/spy/spy.rc b/WeChatFerry/spy/spy.rc index 4ed927e..9b3b9ce 100644 --- a/WeChatFerry/spy/spy.rc +++ b/WeChatFerry/spy/spy.rc @@ -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" diff --git a/clients/http/setup.py b/clients/http/setup.py index 5e3d4b4..34d57bf 100644 --- a/clients/http/setup.py +++ b/clients/http/setup.py @@ -33,7 +33,7 @@ setup( "setuptools", "fastapi", "uvicorn[standard]", - "wcferry>=39.0.1.0", + "wcferry>=39.0.2.0", ], classifiers=[ "Environment :: Win32 (MS Windows)", diff --git a/clients/http/wcfhttp/core.py b/clients/http/wcfhttp/core.py index ea4e982..ec95b60 100644 --- a/clients/http/wcfhttp/core.py +++ b/clients/http/wcfhttp/core.py @@ -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): diff --git a/clients/python/README.MD b/clients/python/README.MD index 4150fe1..9e5b875 100644 --- a/clients/python/README.MD +++ b/clients/python/README.MD @@ -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) * 获取朋友圈消息
点击查看更多 diff --git a/clients/python/wcferry/client.py b/clients/python/wcferry/client.py index 430eb1b..856c3ea 100644 --- a/clients/python/wcferry/client.py +++ b/clients/python/wcferry/client.py @@ -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