Commit 84d8d99d authored by Dominik Charousset's avatar Dominik Charousset

changed version to 0.6

parent cee8dd7c
...@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8) ...@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8)
project(cppa CXX) project(cppa CXX)
set(LIBCPPA_VERSION_MAJOR 0) set(LIBCPPA_VERSION_MAJOR 0)
set(LIBCPPA_VERSION_MINOR 5) set(LIBCPPA_VERSION_MINOR 6)
set(LIBCPPA_VERSION_PATCH 5) set(LIBCPPA_VERSION_PATCH 0)
# prohibit in-source builds # prohibit in-source builds
if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}") if ("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
......
Version 0.6
-----------
__2013_02_22__
- Added `quit_actor` function to terminate actors
- Added continuation feature to non-blocking API
- Allow functor-only usage of `then` and `await`
- Support for Boost 1.53
- Fixed timing bug in synchronous response handling
- Better diagnostics in unit tests
- Use -O3 for release build, because -O4 is broken in Clang
- Auto-reply `EXITED` to orphaned sync requests
- Added `partial_function::or_else` to concatenate partial functions
- New `timed_sync_send` API with different timeout handling
- Added `on_sync_failure` and `on_sync_timeout` handlers for sync messaging
- Added `skip_message` helper to allow users to skip messages manually
Version 0.5.5 Version 0.5.5
------------- -------------
......
...@@ -31,7 +31,7 @@ PROJECT_NAME = libcppa ...@@ -31,7 +31,7 @@ PROJECT_NAME = libcppa
# This could be handy for archiving the generated documentation or # This could be handy for archiving the generated documentation or
# if some version control system is used. # if some version control system is used.
PROJECT_NUMBER = "Version 0.5.5" PROJECT_NUMBER = "Version 0.6.0"
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put. # base path where the generated documentation will be put.
......
...@@ -292,3 +292,4 @@ unit_testing/test_yield_interface.cpp ...@@ -292,3 +292,4 @@ unit_testing/test_yield_interface.cpp
cppa/memory_cached_mixin.hpp cppa/memory_cached_mixin.hpp
unit_testing/test.cpp unit_testing/test.cpp
src/exit_reason.cpp src/exit_reason.cpp
src/on.cpp
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