Skip to content

Commit

Permalink
Update HISTORY.md and modify version to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
findstr committed Dec 1, 2021
1 parent acc269d commit b477135
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## v0.5.0 (Dec 1, 2021)
Bug fixes:

- fix incorrect session type in netpacket.rpcpack
- fix incorrect call of lua_gc
- handle socket close event in send_msg_tcp/send_msg_udp

New features:

- add cluster module to provide some help for cluster networking
- use parameters instead of environment variables to override startup variables ([#984308b](https://github.com/findstr/silly/tree/984308b82012e733bcf8c8481875a6a6f888a2ff))
- add examples for timer,socket,rpc,http,websocket
- refine core.timeout for large number of timer events(delay create task for timer event can reduce the memory usage to 30% of the original)
- crypto.base64encode support url safe code and add crypto.sha256, crypto.digestsign, crypto.digestverify
- TLS support SNI,ALPN
- support http2
- refine patch(more flexible, more powerful)
- more monitor data(timer event info, more memory info)

## v0.4.0 (Nov 2, 2020)
Bug fixes:

Expand Down
2 changes: 1 addition & 1 deletion silly-src/silly.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "silly_socket.h"

#define SILLY_VERSION_MAJOR 0
#define SILLY_VERSION_MINOR 4
#define SILLY_VERSION_MINOR 5
#define SILLY_VERSION_RELEASE 0
#define SILLY_VERSION_NUM ((SILLY_VERSION_MAJOR * 100) + SILLY_VERSION_MINOR)
#define SILLY_VERSION STR(SILLY_VERSION_MAJOR) "." STR(SILLY_VERSION_MINOR)
Expand Down

0 comments on commit b477135

Please sign in to comment.