From 29db1cadd32c1a54d72582daae8018e63cac5b48 Mon Sep 17 00:00:00 2001 From: Adam Binford Date: Wed, 27 Sep 2023 07:51:50 -0400 Subject: [PATCH] Bump version to 0.2.1 (#24) --- Cargo.lock | 4 ++-- python/Cargo.toml | 4 ++-- rust/Cargo.toml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 054ce5c..a9c278c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -477,7 +477,7 @@ checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" [[package]] name = "hdfs-native" -version = "0.2.0" +version = "0.2.1" dependencies = [ "async-trait", "base64", @@ -510,7 +510,7 @@ dependencies = [ [[package]] name = "hdfs-native-python" -version = "0.2.0" +version = "0.2.1" dependencies = [ "bytes", "env_logger", diff --git a/python/Cargo.toml b/python/Cargo.toml index b9352f1..094b816 100644 --- a/python/Cargo.toml +++ b/python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdfs-native-python" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["Adam Binford "] homepage = "https://github.com/Kimahriman/hdfs-native" @@ -27,7 +27,7 @@ name = "hdfs_native._internal" [dependencies] bytes = "1.4" env_logger = "0.10" -hdfs-native = { version = "0.2.0", path = "../rust", features=["token", "kerberos", "rs"] } +hdfs-native = { version = "0.2.1", path = "../rust", features=["token", "kerberos", "rs"] } log = "0.4" pyo3 = { version = "0.19.0", features = ["extension-module", "abi3", "abi3-py37"] } thiserror = "1.0.43" diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 3265bcc..f6fef13 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hdfs-native" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["Adam Binford "] homepage = "https://github.com/Kimahriman/hdfs-native"