From f3f46923d485728bae3ad1955830cdc69fbb7d51 Mon Sep 17 00:00:00 2001 From: Cloud Wu Date: Wed, 30 Apr 2014 19:58:56 +0800 Subject: [PATCH] add release note --- HISTORY.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 HISTORY.md diff --git a/HISTORY.md b/HISTORY.md new file mode 100644 index 00000000..84f960f8 --- /dev/null +++ b/HISTORY.md @@ -0,0 +1,28 @@ +Dev +=== + +Major Changes + +* Rewrite malloc hook , use `pthread_getspecific` instead of `__thread` to get current service handle. +* Optimize global unique service query, rewrite `service_mgr` . +* Add some snax api, snax.uniqueservice (etc.) , use independent protocol `PTYPE_SNAX` . +* Add bootstrap lua script , remove some code in C . +* Use a lua loader to load lua service code (and set the lua environment), remove some code in C. +* Support preload a file before each lua serivce start. +* Add datacenter serivce. +* Add multicast api. + +v0.1.1 (2014-4-28) +====== + +Major Changes + +* socket channel reconnect should clear request queue. +* socket close may block the coroutine. +* jemalloc api may crash on macosx (disable jemalloc on macosx). + +v0.1.0 (2014-4-23) +====== + +First public version (2012-8-1) +======