Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions htgettoken.spec
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -74,6 +74,10 @@ rm -rf $RPM_BUILD_ROOT


%changelog
* Fri Jun 20 2025 Dave Dykstra <dwd@fnal.gov> 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 <dwd@fnal.gov> 2.2-2
- Add "-I" to the shebang on /usr/bin/htgettoken to ignore PYTHONPATH
and user libraries.
Expand Down
2 changes: 1 addition & 1 deletion htgettoken/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from __future__ import print_function

prog = "htgettoken"
version = "2.2"
version = "2.3"

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading