summaryrefslogtreecommitdiff
path: root/awwan.go
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-01-06 22:28:30 +0700
committerShulhan <ms@kilabit.info>2024-01-06 22:28:30 +0700
commitce62f5b837f75ebdd490792c7f23544b2a72bcf8 (patch)
treebed89c89d9e3f5e168e354f49f9abe9054635600 /awwan.go
parentbddda11f3270dd380c6908206c4c7cf88ef2d61d (diff)
downloadawwan-0.11.0.tar.xz
Release awwan v0.11.0 (2024-01-06)v0.11.0
In this release we create https://tour.awwan.org where user can try and learn awwan using step-by-step tutorial. In the web-user interface (WUI) we add functionality to stop the local or SSH execution. === Breaking changes * all: make the magic line "#put:" use explicit source for encrypted file === New features * _wui: implement button to stop execution * all: implement HTTP API to stop local or play execution === Bug fixes * all: check script file is a directory * all: fix panic due to out of range when running "#require" statement === Enhancements * all: delete the execution response and context cancellation on finished * all: change the remote temporary directory to "~/.cache/awwan"
Diffstat (limited to 'awwan.go')
-rw-r--r--awwan.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/awwan.go b/awwan.go
index 94e1262..0e96c03 100644
--- a/awwan.go
+++ b/awwan.go
@@ -19,7 +19,7 @@ import (
)
// Version current version of this module (library and program).
-var Version = `0.10.0`
+var Version = `0.11.0`
// osGetwd define the handler to get current working directory.
//