Skip to content

Commit 05bf2f9

Browse files
committed
Bump 0.1.4 -> 0.1.5
1 parent 9119d68 commit 05bf2f9

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

.github/workflows/build-golang-macos.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ jobs:
8181
- name: Test Python wheel
8282
run: |
8383
# Test wheel installation
84-
pip install dist/otdf_python-0.1.4-py3-none-any.whl
84+
pip install dist/otdf_python-0.1.5-py3-none-any.whl
8585
8686
# Test wheel functionality
8787
# python3 validate_otdf_python.py
8888
8989
# - uses: ./.github/workflows/platform-integration-test.yaml
9090
# with:
91-
# wheel: dist/otdf_python-0.1.4-py3-none-any.whl
91+
# wheel: dist/otdf_python-0.1.5-py3-none-any.whl
9292

9393
# release:
9494
# needs: build

.github/workflows/build-golang-ubuntu.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,20 +67,20 @@ jobs:
6767
- name: Test Python wheel
6868
run: |
6969
# Test wheel installation
70-
pip install dist/otdf_python-0.1.4-py3-none-any.whl
70+
pip install dist/otdf_python-0.1.5-py3-none-any.whl
7171
7272
# DISABLED: Need to figure out Ubuntu nested VM
7373
# Test wheel functionality
7474
# python3 validate_otdf_python.py
7575
7676
- uses: actions/cache/restore@v4
7777
with:
78-
path: dist/otdf_python-0.1.4-py3-none-any.whl
78+
path: dist/otdf_python-0.1.5-py3-none-any.whl
7979
key: ${{ runner.os }}-data-${{ github.sha }}
8080

8181
- uses: actions/cache/save@v4
8282
with:
83-
path: dist/otdf_python-0.1.4-py3-none-any.whl
83+
path: dist/otdf_python-0.1.5-py3-none-any.whl
8484
key: ${{ runner.os }}-data-${{ github.sha }}
8585
restore-keys: |
8686
${{ runner.os }}-data-
@@ -89,4 +89,4 @@ jobs:
8989
needs: build
9090
uses: ./.github/workflows/platform-integration-test.yaml
9191
with:
92-
wheel: dist/otdf_python-0.1.4-py3-none-any.whl
92+
wheel: dist/otdf_python-0.1.5-py3-none-any.whl

.github/workflows/platform-integration-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/cache/restore@v4
2727
with:
28-
path: dist/otdf_python-0.1.4-py3-none-any.whl
28+
path: dist/otdf_python-0.1.5-py3-none-any.whl
2929
key: ${{ runner.os }}-data-${{ github.sha }}
3030

3131
- name: Prove that the input file is available

make_and_validate_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ python3 -m pip install --upgrade setuptools wheel
4242
python3 setup.py bdist_wheel
4343

4444
# Prove that the wheel can be installed
45-
pip install dist/otdf_python-0.1.4-py3-none-any.whl
45+
pip install dist/otdf_python-0.1.5-py3-none-any.whl
4646

4747
if [[ "$SKIP_TESTS" == "-s" || "$SKIP_TESTS" == "--skip-tests" ]]; then
4848
echo "Build is complete, skipping tests."

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "otdf-python"
33
# Should match 'setup.py' version number (used for gopy/pybindgen)
4-
version = "0.1.4"
4+
version = "0.1.5"
55
description = "Unofficial OpenTDF SDK for Python."
66
authors = ["b-long <[email protected]>"]
77
readme = "README.md"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
url="https://github.com/b-long/opentdf-python-sdk",
2525
package_data={"otdf_python": ["*.so"]},
2626
# Should match 'pyproject.toml' version number
27-
version="0.1.4",
27+
version="0.1.5",
2828
author_email="[email protected]",
2929
include_package_data=True,
3030
)

setup_ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def build_extension(self, ext: Extension):
8181

8282
setuptools.setup(
8383
name="otdf_python",
84-
version="0.1.4",
84+
version="0.1.5",
8585
author="b-long",
8686
description="Unofficial OpenTDF SDK for Python.",
8787
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)