Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src-python/amazon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"""
Amazon Ion
"""
__version__ = "0.13.0"
__version__ = "0.14.1"
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion src-python/amazon/ion/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
Loading