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
7168be7a
Commit
7168be7a
authored
Oct 31, 2022
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change version to 0.19.0
parent
3d232106
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
CHANGELOG.md
CHANGELOG.md
+20
-2
libcaf_core/caf/config.hpp
libcaf_core/caf/config.hpp
+1
-1
No files found.
CHANGELOG.md
View file @
7168be7a
...
@@ -3,10 +3,25 @@
...
@@ -3,10 +3,25 @@
All notable changes to this project will be documented in this file. The format
All notable changes to this project will be documented in this file. The format
is based on
[
Keep a Changelog
](
https://keepachangelog.com
)
.
is based on
[
Keep a Changelog
](
https://keepachangelog.com
)
.
## [
Unreleased]
## [
0.19.0-rc.1] - 2020-10-31
### Added
### Added
-
CAF now ships an all-new "flow API". This allows users to express data flows
at a high level of abstraction with a ReactiveX-style interface. Please refer
to new examples and the documentation for more details, as this is a large
addition that we cannot cover in-depth here.
-
CAF has received a new module:
`caf.net`
. This module enables CAF applications
to interface with network protocols more directly than
`caf.io`
. The new
module contains many low-level building blocks for implementing bindings to
network protocols. However, CAF also ships ready-to-use, high-level APIs for
WebSocket and HTTP. Please have a look at our new examples that showcase the
new APIs!
-
To complement the flow API as well as the new networking module, CAF also
received a new set of
`async`
building blocks. Most notably, this includes
asynchronous buffers for the flow API and futures / promises that enable the
new HTTP request API. We plan on making these building blocks more general in
the future for supporting a wider range of use cases.
-
JSON inspectors now allow users to use a custom
`type_id_mapper`
to generate
-
JSON inspectors now allow users to use a custom
`type_id_mapper`
to generate
and parse JSON text that uses different names for the types than the C++ API.
and parse JSON text that uses different names for the types than the C++ API.
...
@@ -40,6 +55,8 @@ is based on [Keep a Changelog](https://keepachangelog.com).
...
@@ -40,6 +55,8 @@ is based on [Keep a Changelog](https://keepachangelog.com).
thread.
thread.
-
Response promises now hold a strong reference to their parent actor to avoid
-
Response promises now hold a strong reference to their parent actor to avoid
`broken_promise`
errors in some (legitimate) edge cases (#1361).
`broken_promise`
errors in some (legitimate) edge cases (#1361).
-
The old, experimental
`stream`
API in CAF has been replaced by a new API that
is based on the new flow API.
### Deprecated
### Deprecated
...
@@ -849,7 +866,8 @@ is based on [Keep a Changelog](https://keepachangelog.com).
...
@@ -849,7 +866,8 @@ is based on [Keep a Changelog](https://keepachangelog.com).
-
Setting the log level to
`quiet`
now properly suppresses any log output.
-
Setting the log level to
`quiet`
now properly suppresses any log output.
-
Configuring colored terminal output should now print colored output.
-
Configuring colored terminal output should now print colored output.
[
Unreleased
]:
https://github.com/actor-framework/actor-framework/compare/0.18.6...master
[
Unreleased
]:
https://github.com/actor-framework/actor-framework/compare/0.19.0-rc.1...master
[
0.19.0-rc.1
]:
https://github.com/actor-framework/actor-framework/releases/0.19.0-rc.1
[
0.18.6
]:
https://github.com/actor-framework/actor-framework/releases/0.18.6
[
0.18.6
]:
https://github.com/actor-framework/actor-framework/releases/0.18.6
[
0.18.5
]:
https://github.com/actor-framework/actor-framework/releases/0.18.5
[
0.18.5
]:
https://github.com/actor-framework/actor-framework/releases/0.18.5
[
0.18.4
]:
https://github.com/actor-framework/actor-framework/releases/0.18.4
[
0.18.4
]:
https://github.com/actor-framework/actor-framework/releases/0.18.4
...
...
libcaf_core/caf/config.hpp
View file @
7168be7a
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
/// Denotes version of CAF in the format {MAJOR}{MINOR}{PATCH},
/// Denotes version of CAF in the format {MAJOR}{MINOR}{PATCH},
/// whereas each number is a two-digit decimal number without
/// whereas each number is a two-digit decimal number without
/// leading zeros (e.g. 900 is version 0.9.0).
/// leading zeros (e.g. 900 is version 0.9.0).
#define CAF_VERSION 1
806
#define CAF_VERSION 1
900
/// Defined to the major version number of CAF.
/// Defined to the major version number of CAF.
#define CAF_MAJOR_VERSION (CAF_VERSION / 10000)
#define CAF_MAJOR_VERSION (CAF_VERSION / 10000)
...
...
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