From 27a44fd60a13622a2b755ad30ad9281f7b560fc0 Mon Sep 17 00:00:00 2001 From: Hedzr Yeh Date: Tue, 21 Feb 2023 11:57:43 +0800 Subject: [PATCH] bump to v1.11.9 - v1.11.9 (FRZ) - upgrade `[hedzr/log](https:/github.com/hedzr/log)` to simplify error branch and log.Fatal - security maintains - added new `ExecOption`s: `WithIIfOpt(cond, true_opt, false_opt)` & `WithIfOpt(cond, true_opt)` Signed-off-by: Hedzr Yeh --- CHANGELOG | 6 ++++++ README.md | 6 ++++++ doc.go | 4 ++-- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 31ee2eb..f2cb854 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,12 @@ ## Versions +- v1.11.9 (FRZ) + + - upgrade `[hedzr/log](https:/github.com/hedzr/log)` to simplify error branch and log.Fatal + - security maintains + - added new `ExecOption`s: `WithIIfOpt(cond, true_opt, false_opt)` & `WithIfOpt(cond, true_opt)` + - v1.11.8 (FRZ) - upgrade `hedzr/errors.v3` to compliant with go1.20+ diff --git a/README.md b/README.md index 6ea0c50..490478a 100644 --- a/README.md +++ b/README.md @@ -50,6 +50,12 @@ and Bonus of [#cmdr](https://github.com/topics/cmdr) Series: - english documentation NOT completed yet - documentation at: +- v1.11.9 (FRZ) + + - upgrade `[hedzr/log](https:/github.com/hedzr/log)` to simplify error branch and log.Fatal + - security maintains + - added new `ExecOption`s: `WithIIfOpt(cond, true_opt, false_opt)` & `WithIfOpt(cond, true_opt)` + - v1.11.8 (FRZ) - upgrade `[hedzr/errors.v3](https:/github.com/hedzr/errors)` to compliant with go1.20+ diff --git a/doc.go b/doc.go index 335a1e4..e8c95de 100755 --- a/doc.go +++ b/doc.go @@ -11,7 +11,7 @@ const ( // AppName const AppName = "cmdr" // Version const - Version = "1.11.8" + Version = "1.11.9" // VersionInt const - VersionInt = 0x010b08 + VersionInt = 0x010b09 )