Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
84d8d99d
Commit
84d8d99d
authored
Feb 22, 2013
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed version to 0.6
parent
cee8dd7c
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
3 deletions
+22
-3
CMakeLists.txt
CMakeLists.txt
+2
-2
ChangeLog.md
ChangeLog.md
+18
-0
Doxyfile.in
Doxyfile.in
+1
-1
cppa.files
cppa.files
+1
-0
manual.pdf
manual.pdf
+0
-0
No files found.
CMakeLists.txt
View file @
84d8d99d
...
...
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8)
project
(
cppa CXX
)
set
(
LIBCPPA_VERSION_MAJOR 0
)
set
(
LIBCPPA_VERSION_MINOR
5
)
set
(
LIBCPPA_VERSION_PATCH
5
)
set
(
LIBCPPA_VERSION_MINOR
6
)
set
(
LIBCPPA_VERSION_PATCH
0
)
# prohibit in-source builds
if
(
"
${
CMAKE_SOURCE_DIR
}
"
STREQUAL
"
${
CMAKE_BINARY_DIR
}
"
)
...
...
ChangeLog.md
View file @
84d8d99d
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
-------------
...
...
Doxyfile.in
View file @
84d8d99d
...
...
@@ -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.5
"
PROJECT_NUMBER = "Version 0.
6.0
"
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
...
...
cppa.files
View file @
84d8d99d
...
...
@@ -292,3 +292,4 @@ unit_testing/test_yield_interface.cpp
cppa/memory_cached_mixin.hpp
unit_testing/test.cpp
src/exit_reason.cpp
src/on.cpp
manual.pdf
View file @
84d8d99d
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment