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
d2afafff
Commit
d2afafff
authored
Jan 23, 2014
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed version to 0.9
parent
6d43a00a
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
4 deletions
+17
-4
CMakeLists.txt
CMakeLists.txt
+2
-2
ChangeLog.md
ChangeLog.md
+13
-0
Doxyfile.in
Doxyfile.in
+1
-1
manual/manual.tex
manual/manual.tex
+1
-1
No files found.
CMakeLists.txt
View file @
d2afafff
...
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8)
...
@@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 2.8)
project
(
cppa C CXX
)
project
(
cppa C CXX
)
set
(
LIBCPPA_VERSION_MAJOR 0
)
set
(
LIBCPPA_VERSION_MAJOR 0
)
set
(
LIBCPPA_VERSION_MINOR
8
)
set
(
LIBCPPA_VERSION_MINOR
9
)
set
(
LIBCPPA_VERSION_PATCH
1
)
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
}
"
)
...
...
ChangeLog.md
View file @
d2afafff
Version 0.9.0
-------------
__2014_XX_XX__
-
Redesigned large parts of the library related to type-safe actors:
*
No more thread-local
`self`
, because it can only return a type-erased handle
*
New type
`actor`
replaces
`actor_ptr`
, can be used to send any message
*
New type
`actor_addr`
can only be used for monitoring and identifying actors
*
New type
`exit_msg`
is now used instead of messages using the atom
`EXIT`
*
New type
`down_msg`
is now used instead of messages using the atom
`DOWN`
*
New header
`system_messages.hpp`
for message types used by the runtime
Version 0.8.1
Version 0.8.1
-------------
-------------
...
...
Doxyfile.in
View file @
d2afafff
...
@@ -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.
8.1
"
PROJECT_NUMBER = "Version 0.
9.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.
...
...
manual/manual.tex
View file @
d2afafff
...
@@ -45,7 +45,7 @@
...
@@ -45,7 +45,7 @@
%BEGIN LATEX
%BEGIN LATEX
\texttt
{
\huge
{
\textbf
{
libcppa
}}}
\\
~
\\
A C++ library for actor programming
\\
~
\\
~
\\
~
\\
%
\texttt
{
\huge
{
\textbf
{
libcppa
}}}
\\
~
\\
A C++ library for actor programming
\\
~
\\
~
\\
~
\\
%
%END LATEX
%END LATEX
User Manual
\\\normalsize
{
\texttt
{
libcppa
}
version 0.
8.1
}
\vfill
}
User Manual
\\\normalsize
{
\texttt
{
libcppa
}
version 0.
9.0
}
\vfill
}
\author
{
Dominik Charousset
}
\author
{
Dominik Charousset
}
...
...
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