From 8b802e4c5298d93a556cef74b57b2081263d359e Mon Sep 17 00:00:00 2001 From: Marica Antonacci Date: Mon, 18 Mar 2024 15:00:48 +0100 Subject: [PATCH] Update application version --- orchent.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orchent.go b/orchent.go index cd6f5c5..abff0f6 100644 --- a/orchent.go +++ b/orchent.go @@ -21,7 +21,7 @@ import ( "gopkg.in/alecthomas/kingpin.v2" ) -const OrchentVersion string = "1.2.9" +const OrchentVersion string = "1.3.0" var ( app = kingpin.New("orchent", "The orchestrator client. \n \nPlease either store your access token in 'ORCHENT_TOKEN' or set the account to use with oidc-agent in the 'ORCHENT_AGENT_ACCOUNT' and the socket of the oidc-agent in the 'OIDC_SOCK' environment variable: \n export ORCHENT_TOKEN= \n OR \n export OIDC_SOCK= (usually this is already exported) \n export ORCHENT_AGENT_ACCOUNT= \nIf you need to specify the file containing the trusted root CAs use the 'ORCHENT_CAFILE' environment variable: \n export ORCHENT_CAFILE=\n \n").Version(OrchentVersion)