Skip to content

Commit 00fcfe4

Browse files
🔖 Version 5.0.0.alpha2
1 parent 9156366 commit 00fcfe4

3 files changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/_publish-code.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ jobs:
6262
env:
6363
TWINE_NON_INTERACTIVE: "1"
6464
TWINE_USERNAME: ${{ secrets.PYPI_TEST_USERNAME }}
65-
TWINE_PASSWORD: ${{ secrets.PYPI_TEST_PASSWORD }}
66-
run: twine upload --disable-progress-bar --repository testpypi ./dist/*
65+
TWINE_PASSWORD: ${{ matrix.variant == 'lite' && secrets.PYPI_TEST_PASSWORD_LITE || secrets.PYPI_TEST_PASSWORD }}
66+
run: twine upload --disable-progress-bar --repository testpypi --skip-existing ./dist/*
6767

6868
- name: Upload
6969
if: startsWith(github.ref, 'refs/tags/')
7070
env:
7171
TWINE_NON_INTERACTIVE: "1"
7272
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
73-
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
74-
run: twine upload --disable-progress-bar ./dist/*
73+
TWINE_PASSWORD: ${{ matrix.variant == 'lite' && secrets.PYPI_PASSWORD_LITE || secrets.PYPI_PASSWORD }}
74+
run: twine upload --disable-progress-bar --skip-existing ./dist/*

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Mindee Python Client Library Changelog
22

3+
## v5.0.0.alpha2 - 2026-06-11
4+
### Changes
5+
* :wrench: auto-publish mindee-lite
6+
7+
38
## v5.0.0.alpha1 - 2026-06-11
49
### ¡Breaking Changes!
510
* :boom: :recycle: update V1 & V2 syntaxes to match other SDKs

mindee/versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import sys
22

3-
__version__ = "5.0.0.alpha1"
3+
__version__ = "5.0.0.alpha2"
44

55
PYTHON_VERSION = f"{sys.version_info[0]}.{sys.version_info[1]}"
66

0 commit comments

Comments
 (0)