Skip to content

Commit

Permalink
push v5.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
L-codes committed Feb 22, 2023
1 parent ed38c7c commit 810ad6b
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG-en.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

### v5.0.1:
##### Enhancement
1. Java improves compatibility through reflection, such as tomcat10 cannot be used (special thanks to @BeichenDream for PR)
2. Use class static variables instead of `application` global variables to improve compatibility (special thanks to @c0ny1 for his suggestion)
##### Fix
1. When repairing the abnormal connection, it failed to exit normally
2. Fix exception handling logic of `blv_decode` (issue #73)

### v5.0.0:
##### New Features
1. Both java/chsarp/php use the `BLV (Byte-Length-Value)` data structure for transmission, officially removing the random header technology that has been used since the first version was released three years ago
Expand Down
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Change Log

### v5.0.1:
##### 修复
##### 增强
1. java 通过反射的方式,提高兼容性, 如tomcat10无法使用 (特别感谢 @BeichenDream 的PR)
2. 使用 class 的静态变量替代 `application` 全局变量,提高兼容性 (特别感谢 @c0ny1 的建议)
3. 修复异常连接时,未能正常退出
4. 修复 `blv_decode` 的异常处理逻辑 (issue #73)
##### 修复
1. 修复异常连接时,未能正常退出
2. 修复 `blv_decode` 的异常处理逻辑 (issue #73)

### v5.0.0:
##### 新特征
Expand Down
2 changes: 1 addition & 1 deletion README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
## Version

5.0.0 - [Change Log](CHANGELOG-en.md)
5.0.1 - [Change Log](CHANGELOG-en.md)


## Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

## Version

5.0.0 - [版本修改日志](CHANGELOG.md)
5.0.1 - [版本修改日志](CHANGELOG.md)


## Features
Expand Down
2 changes: 1 addition & 1 deletion neoreg.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__author__ = 'L'
__version__ = '5.0.0'
__version__ = '5.0.1'

import sys
import os
Expand Down

0 comments on commit 810ad6b

Please sign in to comment.