From f72f69757b3b650ea0ce62c0d204fe8b8fe2e8aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20J=C4=99drecki?= Date: Tue, 2 Sep 2025 22:43:39 +0200 Subject: [PATCH 1/3] Update version string to 2.2.0 alpha --- splunklib/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splunklib/__init__.py b/splunklib/__init__.py index 3dca1c4c9..84c4a061b 100644 --- a/splunklib/__init__.py +++ b/splunklib/__init__.py @@ -32,5 +32,5 @@ def setup_logging( logging.basicConfig(level=level, format=log_format, datefmt=date_format) -__version_info__ = (2, 1, 1) +__version_info__ = (2, 2, 0, "alpha") __version__ = ".".join(map(str, __version_info__)) From c2295e5d51325e80a88f2138d57b229495debfbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20J=C4=99drecki?= Date: Wed, 3 Sep 2025 10:21:48 +0200 Subject: [PATCH 2/3] Fix broken Trusted Publishing for both environments --- .github/workflows/cd.yml | 2 -- .github/workflows/release.yml | 3 --- 2 files changed, 5 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index d8df8f43c..1d4b85b1b 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -23,6 +23,4 @@ jobs: - name: Publish package to Test PyPI uses: pypa/gh-action-pypi-publish@d417ba7e7683fa9104c42abe611c1f2c93c0727d with: - user: __token__ - password: ${{ secrets.TEST_PYPI_PASSWORD }} repository-url: https://test.pypi.org/legacy/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 382e82d6a..07b82e165 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,9 +24,6 @@ jobs: run: python -m build - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@d417ba7e7683fa9104c42abe611c1f2c93c0727d - with: - user: __token__ - password: ${{ secrets.PYPI_PASSWORD }} - name: Install tox run: pip install tox - name: Generate API docs From 94c94cd4d364dc8ccd45989ee4f89ed24e2b54a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20J=C4=99drecki?= Date: Thu, 4 Sep 2025 12:46:51 +0200 Subject: [PATCH 3/3] Change cd.yml to pre-release --- .github/workflows/{cd.yml => pre-release.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/workflows/{cd.yml => pre-release.yml} (100%) diff --git a/.github/workflows/cd.yml b/.github/workflows/pre-release.yml similarity index 100% rename from .github/workflows/cd.yml rename to .github/workflows/pre-release.yml