Commit e1a45b07 authored by Dominik Charousset's avatar Dominik Charousset

changed version to 0.5.3

parent 0fb5be43
......@@ -3,7 +3,7 @@ project(cppa CXX)
set(LIBCPPA_VERSION_MAJOR 0)
set(LIBCPPA_VERSION_MINOR 5)
set(LIBCPPA_VERSION_PATCH 2)
set(LIBCPPA_VERSION_PATCH 3)
# prohibit in-source builds
if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
......
Version 0.5.3
-------------
__2012-11-13__
- Improved memory management
* Use a per-thread memory cache for `recursive_queue_node` and `actor` objects
* Allocate ~1kb worth ob objects rather than allocating each object with `new`
* Destroyed objects are returned to the cache and re-used later
- Add `intrusive_fwd_ptr` to support counted pointers for forward declared types
- Qt example for group chat, highlighting `actor_widget_mixin`
Version 0.5.2
-------------
......
......@@ -31,7 +31,7 @@ PROJECT_NAME = libcppa
# This could be handy for archiving the generated documentation or
# if some version control system is used.
PROJECT_NUMBER = "Version 0.5.2"
PROJECT_NUMBER = "Version 0.5.3"
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
......
No preview for this file type
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment