Skip to content

Commit

Permalink
feat: remotefs 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
veeso committed Sep 30, 2024
1 parent 362122f commit a99e670
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# Changelog

- [Changelog](#changelog)
- [0.4.0](#040)
- [0.3.0](#030)
- [0.2.0](#020)
- [0.1.0](#010)

---

## 0.4.0

Released on 30/09/2024

- remotefs 0.3.0

## 0.3.0

Released on 29/09/2024
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ keywords = ["kube-client", "kube"]
license = "MIT"
name = "remotefs-kube"
readme = "README.md"
repository = "https://github.com/veeso/remotefs-rs-kube"
repository = "https://github.com/remotefs-rs/remotefs-rs-kube"
version = "0.3.0"

[dependencies]
Expand All @@ -19,7 +19,7 @@ k8s-openapi = { version = "0.22", features = ["v1_30"] }
kube = { version = "0.92", features = ["client", "config", "ws"] }
lazy-regex = "3"
log = "^0.4"
remotefs = "^0.2"
remotefs = "^0.3"
tar = "0.4"
tempfile = "3"
thiserror = "^1"
Expand Down
2 changes: 1 addition & 1 deletion src/kube_container_fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ impl RemoteFs for KubeContainerFs {
&mut self,
path: &Path,
metadata: &Metadata,
reader: Box<dyn std::io::Read>,
reader: Box<dyn std::io::Read + Send>,
) -> RemoteResult<u64> {
self.check_connection()?;
let path = path_utils::absolutize(self.wrkdir.as_path(), path);
Expand Down
4 changes: 2 additions & 2 deletions src/kube_multipod_fs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ impl RemoteFs for KubeMultiPodFs {
&mut self,
path: &Path,
metadata: &Metadata,
reader: Box<dyn std::io::Read>,
reader: Box<dyn std::io::Read + Send>,
) -> RemoteResult<u64> {
let path = self.kube_path(path);

Expand Down Expand Up @@ -657,7 +657,7 @@ impl RemoteFs for KubeMultiPodFs {
&mut self,
path: &Path,
metadata: &Metadata,
reader: Box<dyn std::io::Read>,
reader: Box<dyn std::io::Read + Send>,
) -> RemoteResult<u64> {
let path = self.kube_path(path);

Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,10 +101,10 @@
#![doc(html_playground_url = "https://play.rust-lang.org")]
#![doc(
html_favicon_url = "https://raw.githubusercontent.com/veeso/suppaftp/main/assets/images/cargo/suppaftp-128.png"
html_favicon_url = "https://raw.githubusercontent.com/remotefs-rs/remotefs-rs/main/assets/logo-128.png"
)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/veeso/suppaftp/main/assets/images/cargo/suppaftp-512.png"
html_logo_url = "https://raw.githubusercontent.com/remotefs-rs/remotefs-rs/main/assets/logo.png"
)]

// -- common deps
Expand Down

0 comments on commit a99e670

Please sign in to comment.