Skip to content

Commit 10b6ca0

Browse files
authored
Update version to 2.2.0 alpha, fix Trusted Publishing (#663)
* Update version string to 2.2.0 alpha * Fix broken Trusted Publishing for both environments * Change cd.yml to pre-release.yml
1 parent f83af55 commit 10b6ca0

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

.github/workflows/cd.yml renamed to .github/workflows/pre-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,4 @@ jobs:
2323
- name: Publish package to Test PyPI
2424
uses: pypa/gh-action-pypi-publish@d417ba7e7683fa9104c42abe611c1f2c93c0727d
2525
with:
26-
user: __token__
27-
password: ${{ secrets.TEST_PYPI_PASSWORD }}
2826
repository-url: https://test.pypi.org/legacy/

.github/workflows/release.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,6 @@ jobs:
2424
run: python -m build
2525
- name: Publish package to PyPI
2626
uses: pypa/gh-action-pypi-publish@d417ba7e7683fa9104c42abe611c1f2c93c0727d
27-
with:
28-
user: __token__
29-
password: ${{ secrets.PYPI_PASSWORD }}
3027
- name: Install tox
3128
run: pip install tox
3229
- name: Generate API docs

splunklib/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ def setup_logging(
3232
logging.basicConfig(level=level, format=log_format, datefmt=date_format)
3333

3434

35-
__version_info__ = (2, 1, 1)
35+
__version_info__ = (2, 2, 0, "alpha")
3636
__version__ = ".".join(map(str, __version_info__))

0 commit comments

Comments
 (0)