Skip to content

Commit ced4471

Browse files
authored
Merge pull request #119 from DrDaveD/release-2.1
prepare for 2.1 release
2 parents 333149a + 752d78c commit ced4471

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
-bs \
6161
htgettoken.spec
6262
63-
- uses: actions/upload-artifact@v3
63+
- uses: actions/upload-artifact@v4
6464
with:
6565
name: srpm-${{ matrix.distro }}-${{ matrix.version }}
6666
path: "*.src.rpm"
@@ -84,7 +84,7 @@ jobs:
8484
container: ${{ matrix.distro }}:${{ matrix.version }}
8585
steps:
8686
- name: Download SRPM
87-
uses: actions/download-artifact@v3
87+
uses: actions/download-artifact@v4
8888
with:
8989
name: srpm-${{ matrix.distro }}-${{ matrix.version }}
9090

@@ -135,7 +135,7 @@ jobs:
135135
rpm --query --package "${rpmf}" --requires
136136
done
137137
138-
- uses: actions/upload-artifact@v3
138+
- uses: actions/upload-artifact@v4
139139
with:
140140
name: rpm-${{ matrix.distro }}-${{ matrix.version }}
141141
path: "*.rpm"
@@ -159,7 +159,7 @@ jobs:
159159
container: ${{ matrix.distro }}:${{ matrix.version }}
160160
steps:
161161
- name: Download RPMs
162-
uses: actions/download-artifact@v3
162+
uses: actions/download-artifact@v4
163163
with:
164164
name: rpm-${{ matrix.distro }}-${{ matrix.version }}
165165

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
uses: conda-incubator/setup-miniconda@v2
5050
with:
5151
activate-environment: test
52-
miniforge-variant: Mambaforge
52+
miniforge-variant: Miniforge3
5353
python-version: ${{ matrix.python-version }}
5454
use-mamba: true
5555

htgettoken.spec

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Summary: Get OIDC bearer tokens by interacting with Hashicorp vault
22
Name: htgettoken
3-
Version: 2.0
4-
Release: 2%{?dist}
3+
Version: 2.1
4+
Release: 1%{?dist}
55

66
License: BSD-3-Clause
77
URL: https://github.com/fermitools/htgettoken
@@ -80,8 +80,9 @@ rm -rf $RPM_BUILD_ROOT
8080

8181

8282
%changelog
83-
# - Fix htdecodetoken to work with token files that do not end in a newline.
84-
# - Support args in htgettoken.main() Python entry point.
83+
* Tue Feb 25 2025 Dave Dykstra <dwd@fnal.gov> 2.1-1
84+
- Fix htdecodetoken to work with token files that do not end in a newline.
85+
- Support args in htgettoken.main() Python entry point.
8586

8687
* Thu Jul 25 2024 Dave Dykstra <dwd@fnal.gov> 2.0-2
8788
- Fix broken httokendecode symlink.

htgettoken/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from __future__ import print_function
1616

1717
prog = "htgettoken"
18-
version = "2.0"
18+
version = "2.1"
1919

2020
import os
2121
import sys

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = htgettoken
3-
version = 2.0
3+
version = 2.1
44
author = Dave Dykstra
55
author_email = dwd@fnal.gov
66
license = BSD-3-Clause

0 commit comments

Comments
 (0)