Skip to content

Commit 451d8a3

Browse files
committedMay 31, 2024
Bump version and remove releasing object_store
1 parent 03e9533 commit 451d8a3

File tree

4 files changed

+4
-18
lines changed

4 files changed

+4
-18
lines changed
 

‎.github/workflows/rust-release.yml

-14
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,6 @@ jobs:
2121
echo "Cargo metadata has version set to ${CURR_VER}, but got pushed tag ${PUSHED_TAG}."
2222
exit 1
2323
fi
24-
25-
- name: compare git tag with cargo metadata for object-store
26-
run: |
27-
PUSHED_TAG=${GITHUB_REF##*/}
28-
CURR_VER=$( grep version crates/hdfs-native-object-store/Cargo.toml | head -n 1 | awk '{print $3}' | tr -d '"' )
29-
if [[ "${PUSHED_TAG}" != "v${CURR_VER}" ]]; then
30-
echo "Cargo metadata has version set to ${CURR_VER}, but got pushed tag ${PUSHED_TAG}."
31-
exit 1
32-
fi
3324
3425
release:
3526
name: Release
@@ -46,8 +37,3 @@ jobs:
4637
run: cargo publish -p hdfs-native --token ${CRATES_TOKEN}
4738
env:
4839
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
49-
50-
- name: Publish hdfs-native-objectstore to crates.io
51-
run: cargo publish -p hdfs-native-object-store --token ${CRATES_TOKEN}
52-
env:
53-
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

‎Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎python/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdfs-native-python"
3-
version = "0.9.1"
3+
version = "0.9.3"
44
edition = "2021"
55
authors = ["Adam Binford <adamq43@gmail.com>"]
66
homepage = "https://github.com/Kimahriman/hdfs-native"

‎rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hdfs-native"
3-
version = "0.9.1"
3+
version = "0.9.3"
44
edition = "2021"
55
authors = ["Adam Binford <adamq43@gmail.com>"]
66
homepage = "https://github.com/Kimahriman/hdfs-native"

0 commit comments

Comments
 (0)