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
10 changes: 6 additions & 4 deletions htgettoken.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: Get OIDC bearer tokens by interacting with Hashicorp vault
Name: htgettoken
Version: 2.1
Version: 2.2
Release: 1%{?dist}

License: BSD-3-Clause
Expand Down Expand Up @@ -71,9 +71,11 @@ rm -rf $RPM_BUILD_ROOT


%changelog
# - Add BuildRequires python3-devel to generate correct Python metadata.
# - Remove explicit Requires for python dependencies, rely on Python metadata.
# - Always build with wheels.
* Fri Mar 21 2025 Dave Dykstra <dwd@fnal.gov> 2.2-1
- Add BuildRequires python3-devel to generate correct Python metadata.
- Remove explicit Requires for python dependencies, rely on Python metadata.
- Always build with wheels.
- Remove Python root logger configuration.

* Tue Feb 25 2025 Dave Dykstra <dwd@fnal.gov> 2.1-1
- Fix htdecodetoken to work with token files that do not end in a newline.
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.1"
version = "2.2"

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.1
version = 2.2
author = Dave Dykstra
author_email = dwd@fnal.gov
license = BSD-3-Clause
Expand Down
Loading