diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cb78516..aa8b589 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -23,7 +23,6 @@ jobs: echo "Cargo metadata has version set to ${CURR_VER}, but got pushed tag ${PUSHED_TAG}." exit 1 fi - - run: rm object-store/README.md && cp README.md object-store/README.md release-pypi-mac: needs: validate-release-tag @@ -37,6 +36,7 @@ jobs: steps: - uses: actions/checkout@v3 + - run: rm object-store/README.md && cp README.md object-store/README.md - uses: actions/setup-python@v2 with: @@ -56,6 +56,7 @@ jobs: steps: - uses: actions/checkout@v3 + - run: rm object-store/README.md && cp README.md object-store/README.md - uses: actions/setup-python@v2 with: @@ -75,6 +76,7 @@ jobs: steps: - uses: actions/checkout@v3 + - run: rm object-store/README.md && cp README.md object-store/README.md - uses: actions/setup-python@v2 with: @@ -94,6 +96,7 @@ jobs: steps: - uses: actions/checkout@v3 + - run: rm object-store/README.md && cp README.md object-store/README.md - uses: actions/setup-python@v2 with: diff --git a/Cargo.lock b/Cargo.lock index 145add6..526081e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -648,7 +648,7 @@ dependencies = [ [[package]] name = "object-store-python" -version = "0.0.6" +version = "0.0.7" dependencies = [ "async-trait", "bytes", diff --git a/object-store/Cargo.toml b/object-store/Cargo.toml index 034486c..a7387eb 100644 --- a/object-store/Cargo.toml +++ b/object-store/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "object-store-python" -version = "0.0.6" +version = "0.0.7" edition = "2021" authors = ["Robert Pack "] diff --git a/object-store/pyproject.toml b/object-store/pyproject.toml index a09a90b..53cbb27 100644 --- a/object-store/pyproject.toml +++ b/object-store/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "object-store-python" -version = "0.0.6" +version = "0.0.7" requires-python = ">=3.8" readme = "README.md" keywords = ["object-store", "azure", "aws", "gcp"]