Skip to content

Commit ca7054c

Browse files
committed
Release v3.2.2
1 parent bb1b9b4 commit ca7054c

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build and publish
2222
env:
2323
TWINE_USERNAME: __token__
24-
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
24+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
2525
run: |
2626
python setup.py sdist bdist_wheel
2727
twine upload dist/*

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- n/a
1111

12+
## [v3.2.2] - 2025-11-28
13+
14+
- Replace poetry with pip, restore py36 support
15+
1216
## [v3.2.1] - 2025-05-05
1317

1418
- More robust handling of git branches

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
import os
2-
31
from setuptools import find_packages, setup
42

53

@@ -15,7 +13,7 @@ def get_requirements():
1513

1614
setup(
1715
name="ubi-config",
18-
version="3.2.1",
16+
version="3.2.2",
1917
description="A Python Library for accessing Universal Base Image configuration",
2018
long_description=get_long_description(),
2119
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)