summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2022-08-25 12:05:08 +0700
committerShulhan <ms@kilabit.info>2022-08-25 12:05:08 +0700
commit29ab7633c94a6ddb9a983393d1284828a617a7d0 (patch)
tree4cad8a0f69f6847f221ead61c8293899beffd2c0
parent79821d0ee69809fe387293bbe52dcdb0075196d7 (diff)
downloadgorankusu-29ab7633c94a6ddb9a983393d1284828a617a7d0.tar.xz
Release trunks v0.3.0 (2022-08-25)v0.3.0
This release set the minimum Go version to 1.18 and update all modules. == Chores * all: group all documentations under directory _doc * example: fix the HTTP POST handler * all: remove unused field Locker in RunRequest * all: fix all linter warnings
-rw-r--r--_doc/CHANGELOG.adoc28
-rw-r--r--trunks.go2
2 files changed, 29 insertions, 1 deletions
diff --git a/_doc/CHANGELOG.adoc b/_doc/CHANGELOG.adoc
index 00d0d8a..ff751f8 100644
--- a/_doc/CHANGELOG.adoc
+++ b/_doc/CHANGELOG.adoc
@@ -6,6 +6,33 @@ Shulhan <ms@kilabit.info>
:sectanchors:
:sectlinks:
+[#v0_3_0]
+== trunks v0.3.0 (2022-08-25)
+
+This release set the minimum Go version to 1.18 and update all modules.
+
+[#v0_3_0_chores]
+=== Chores
+
+all: group all documentations under directory _doc::
++
+The _doc directory provides an entry point for all documentation.
+While at it we reformat the README to use AsciiDoc markup.
+
+example: fix the HTTP POST handler::
++
+Remove call to ParseMultipartform since the request type is
+x-www-form-urlencoded not multipart/form-data.
+
+all: remove unused field Locker in RunRequest::
+
+all: fix all linter warnings::
++
+Some linter, govet, warns about possible copied Mutex on HttpRequest.
+To fix this we implement method clone and Stringer on HttpRequest.
+
+
+[#v0_2_0]
== trunks v0.2.0 (2022-03-13)
Release trunks under GPL 3.0 or later license.
@@ -13,6 +40,7 @@ Release trunks under GPL 3.0 or later license.
See https://kilabit.info/journal/2022/gpl for more information.
+[#v0_1_0]
== trunks v0.1.0 (2022-02-05)
Module trunks is a library and HTTP service that provide web user interface
diff --git a/trunks.go b/trunks.go
index d6e5602..e0c5932 100644
--- a/trunks.go
+++ b/trunks.go
@@ -19,7 +19,7 @@ import (
)
const (
- Version = "0.1.0"
+ Version = "0.3.0"
DefaultAttackDuration = 10 * time.Second
DefaultAttackRatePerSecond = 500