Skip to content

Commit

Permalink
Build 1.0.80
Browse files Browse the repository at this point in the history
  • Loading branch information
briansfrank committed Apr 23, 2024
1 parent 7885e04 commit b704ac0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions etc/build/config.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//

// default version used by build scripts
buildVersion=1.0.79
buildVersion=1.0.80

// Must be configured boot build in substitute/release installation
//devHome=/work/fan/
Expand All @@ -24,4 +24,5 @@ buildVersion=1.0.79
// dotnetHome=/C:/WINDOWS/Microsoft.NET/Framework/v2.0.50727/

// Mac setup
//jdkHome=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/
//jdkHome=/System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Home/

2 changes: 1 addition & 1 deletion src/doc/docIntro/doc/ChangeLog.fandoc
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
** license: Licensed under the Academic Free License version 3.0
**************************************************************************

*Build 1.0.80 (working)*
*Build 1.0.80 (23 Apr 2024)*
- New ECMA class-based JavaScript design
- Move fwt pods into separate repo
- Crypto JWT and JWK APIs
Expand Down
5 changes: 3 additions & 2 deletions src/doc/docLang/doc/Actors.fandoc
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ Futures [#futures]
******************
All three send methods return a [Future]`concurrent::Future` which may
used to access the result of that message. You can poll for the
result using `concurrent::Future.state` - a future enters the complete
result using `concurrent::Future.status` - a future enters the complete
state by one of three transitions:
- The actor processes the message and returns a result
- The actor raises an exception while processing the message
Expand Down Expand Up @@ -270,4 +270,5 @@ shutdown. Unlike 'stop', kill doesn't give actors a chance to finish
processing their pending message queues - all pending messages are cancelled.
Actors which are currently executing a message are interrupted (which may
or may not immediately terminate that thread). Once all actors have
relinquished their threads, the ActorPool enters the *done* state.
relinquished their threads, the ActorPool enters the *done* state.

0 comments on commit b704ac0

Please sign in to comment.