Skip to content

Commit

Permalink
v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
findstr committed Oct 1, 2017
1 parent d7ba615 commit 8c369d0
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 2 deletions.
32 changes: 32 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
##v0.3.0 (Oct 1, 2017)
Bug fixes:

- netpacket expand queue
- netstream.check and netstream gc
- profiler timestamp
- aes cbc mode
- redis reconnect the dbindex will be reseted

New features:

- add ssl for http.client
- add base64
- add hotpatch for lua code
- add pidfile
- import jemalloc as default memory allocator
- import accept4 in linux
- import cpu affinity which can be user defined in linux
- config file add 'include' command
- remove old rpc and add saux.rpc and saux.msg to support rpc/msg server
- socket add 'tag' for more easy debug
- config file support shell environment
- support multicast in data send level
- synchroize zproto to support float
- dns support cname nested
- socket.write support pass string array as parameter
- redis support pipeline
- core.write support lightuserdata/string/string array
- process the condition of run out of fd when accept
- remove lualib-log and refine daemon log to replace it


##v0.2.2 (Jan 3, 2017)
Bug fixes:

Expand Down
4 changes: 2 additions & 2 deletions silly-src/silly.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
#include "silly_socket.h"

#define SILLY_VERSION_MAJOR 0
#define SILLY_VERSION_MINOR 2
#define SILLY_VERSION_RELEASE 2
#define SILLY_VERSION_MINOR 3
#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)
#define SILLY_RELEASE SILLY_VERSION "." STR(SILLY_VERSION_RELEASE)
Expand Down

0 comments on commit 8c369d0

Please sign in to comment.