diff --git a/htgettoken.spec b/htgettoken.spec index e5b0665..2f24c72 100644 --- a/htgettoken.spec +++ b/htgettoken.spec @@ -1,7 +1,7 @@ Summary: Get OIDC bearer tokens by interacting with Hashicorp vault Name: htgettoken -Version: 2.2 -Release: 2%{?dist} +Version: 2.3 +Release: 1%{?dist} License: BSD-3-Clause URL: https://github.com/fermitools/htgettoken @@ -74,6 +74,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 20 2025 Dave Dykstra 2.3-1 +- Add "-s" and "-f" options to htdecodetoken and default it to "-s" when + stdout is not a TTY. + * Thu May 8 2025 Dave Dykstra 2.2-2 - Add "-I" to the shebang on /usr/bin/htgettoken to ignore PYTHONPATH and user libraries. diff --git a/htgettoken/__init__.py b/htgettoken/__init__.py index b2951ab..a9f9144 100644 --- a/htgettoken/__init__.py +++ b/htgettoken/__init__.py @@ -15,7 +15,7 @@ from __future__ import print_function prog = "htgettoken" -version = "2.2" +version = "2.3" import os import sys diff --git a/setup.cfg b/setup.cfg index f0c88e3..85bbc88 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = htgettoken -version = 2.2 +version = 2.3 author = Dave Dykstra author_email = dwd@fnal.gov license = BSD-3-Clause