From f384ce27e9ce6d2957a66515a9d2bbbd94f74cb4 Mon Sep 17 00:00:00 2001 From: Laurie Wang Date: Fri, 5 Jun 2026 13:44:16 -0700 Subject: [PATCH 1/2] Fix release workflow and bump version to 0.14.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The v0.14.0 release failed because the test job installed the package without test dependencies, so pytest was never available. Install with '.[test]' to include pytest. Also fix the version in src-python/amazon/__init__.py which was still at 0.13.0 — this caused the build to produce 0.13.0 artifacts from the v0.14.0 tag. --- .github/workflows/release.yml | 2 +- src-python/amazon/__init__.py | 2 +- src-python/amazon/ion/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d97f8744a..f5aac10cd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: run: git submodule init && git submodule update && python3 -m venv ./venv && . venv/bin/activate - run: python -m pip install build - run: python -m build . - - run: python -m pip install -e . + - run: python -m pip install -e '.[test]' - run: py.test --ignore tests/test_benchmark_cli.py --ignore tests/test_benchmark_spec.py source-distribution: diff --git a/src-python/amazon/__init__.py b/src-python/amazon/__init__.py index b1f1ce00c..62b4a4df9 100644 --- a/src-python/amazon/__init__.py +++ b/src-python/amazon/__init__.py @@ -15,6 +15,6 @@ """ Amazon Ion """ -__version__ = "0.13.0" +__version__ = "0.14.1" from pkgutil import extend_path __path__ = extend_path(__path__, __name__) diff --git a/src-python/amazon/ion/__init__.py b/src-python/amazon/ion/__init__.py index 2b58f8250..890354ff2 100644 --- a/src-python/amazon/ion/__init__.py +++ b/src-python/amazon/ion/__init__.py @@ -12,7 +12,7 @@ # specific language governing permissions and limitations under the # License. __author__ = 'Amazon.com, Inc.' -__version__ = '0.14.0' +__version__ = '0.14.1' __all__ = [ 'core', From d77fedffedafb7c12fea9be5045952f345d8240e Mon Sep 17 00:00:00 2001 From: Laurie Wang Date: Fri, 5 Jun 2026 14:08:09 -0700 Subject: [PATCH 2/2] Add CHANGES.md entry for 0.14.1 --- CHANGES.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 98e1a7ac2..7d5388990 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +### 0.14.1 (2026-06-05) +* Fix release workflow to install test dependencies (#431) +* Updates ion-c submodule + ### 0.14.0 (2026-04-22) * Bump minimum Python version to 3.9 (#406) * Migrate to pyproject.toml (#379)