diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d97f8744..f5aac10c 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/CHANGES.md b/CHANGES.md index 98e1a7ac..7d538899 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) diff --git a/src-python/amazon/__init__.py b/src-python/amazon/__init__.py index b1f1ce00..62b4a4df 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 2b58f825..890354ff 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',