From 02b1106b5022c99fc1e69d3da56c563526bbeb70 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Mon, 15 Sep 2025 17:03:06 +0300 Subject: [PATCH 1/2] bump version to 2.2.17 --- docs/conf.py | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 5c0aa377..ad0225ec 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '2.2.16' +version = '2.2.17' # The full version, including alpha/beta/rc tags. -release = '2.2.16' +release = '2.2.17' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index d21ab524..9add36ec 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( name="pycaption", - version="2.2.16", + version="2.2.17", description="Closed caption converter", long_description=open(README_PATH).read(), author="Joe Norton", From 63181f9023b6208fd0c5d2010a5502640151a968 Mon Sep 17 00:00:00 2001 From: OlteanuRares Date: Mon, 15 Sep 2025 17:06:27 +0300 Subject: [PATCH 2/2] fix upload artifact version to v4 --- .github/workflows/unit_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index b28029a6..71d62a0d 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -32,13 +32,13 @@ jobs: continue-on-error: true - name: Archive production artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: test-report-${{ matrix.python-version }} path: junit.xml - name: Archive code coverage results - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: code-coverage-report-${{ matrix.python-version }} path: coverage.xml