From cd701c0358ea45fdfbc2530c144ccd1cb1bfa5fd Mon Sep 17 00:00:00 2001 From: Hedzr Yeh Date: Sat, 13 Nov 2021 09:08:07 +0800 Subject: [PATCH] bump to v1.9.1 --- CHANGELOG | 5 +++++ README.md | 6 ++++-- doc.go | 4 ++-- 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 556ea22..4315b1a 100755 --- a/CHANGELOG +++ b/CHANGELOG @@ -2,6 +2,11 @@ ## Versions +- v1.9.1: + - A public template repo may simplify your new CLI app: [**cmdr-go-starter**](https://github.com/hedzr/cmdr-go-starter). + - crashed at an elder fsnotify on macOS, with go1.17 + - minor fixes + - v1.9.0 - .fossa.yaml so a pre-release scan can be launched locally - BREAK: remove plugin/daemon - use cmdr-addons/pkg/plugins/dex instead diff --git a/README.md b/README.md index 3c1d955..cde89db 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,10 @@ uses the public template [**cmdr-go-starter**](https://github.com/hedzr/cmdr-go- - english documentation NOT completed yet - documentation at: https://hedzr.github.io/cmdr-docs/ -- v1.9.1 (WIP): - - uses the public template [cmdr-go-starter](https://github.com/hedzr/cmdr-go-starter). +- v1.9.1: + - A public template repo may simplify your new CLI app: [**cmdr-go-starter**](https://github.com/hedzr/cmdr-go-starter). + - crashed at an elder fsnotify on macOS, with go1.17 + - minor fixes - v1.9.0 - .fossa.yaml so a pre-release scan can be launched locally diff --git a/doc.go b/doc.go index 06b87fd..797627f 100755 --- a/doc.go +++ b/doc.go @@ -13,7 +13,7 @@ const ( // AppName const AppName = "cmdr" // Version const - Version = "1.9.0" + Version = "1.9.1" // VersionInt const - VersionInt = 0x010900 + VersionInt = 0x010901 )