Skip to content

Commit

Permalink
Release of v0.2.1 of other crates (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
robklg authored Jun 25, 2022
1 parent d11879d commit c71954d
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 11 deletions.
21 changes: 20 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# Changelog

## 2022-06-24 libunftp 0.18.5
## 2022-06-25 Release of all crates

### unftp-auth-gcs v0.2.1

_tag: unftp-auth-jsonfile-0.2.1_

- [#416](https://github.com/bolcom/libunftp/pull/416) GCS support for `RMD`. Plus `CWD` now checks target directory existence
- [#415](https://github.com/bolcom/libunftp/pull/415) Support directory timestamps in GCS. To resolve issues with some UI FTP clients, such as Cyberduck

### unftp-auth-* v0.2.1

- compiled unftp-auth-pam against libunftp v0.18.5
- compiled unftp-auth-rest against libunftp v0.18.5

### unftp-sbe-* v0.2.1

- compiled unftp-sbe-fs against libunftp v0.18.5
- compiled unftp-sbe-gcs against libunftp v0.18.5

### 2022-06-24 libunftp 0.18.5

_tag: libunftp-0.18.5_

Expand Down
4 changes: 2 additions & 2 deletions crates/unftp-auth-jsonfile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-auth-jsonfile"
version = "0.2.0"
version = "0.2.1"
description = "An authenticator back-end for libunftp that authenticates against a JSON file"
authors = [
"Agoston Horvath <[email protected]>",
Expand Down Expand Up @@ -35,4 +35,4 @@ valid = "0.3.1"
[dev-dependencies]
pretty_env_logger = "0.4.0"
tokio = { version = "1.19.2", features = ["macros"] }
unftp-sbe-fs = { version="0.2", path="../unftp-sbe-fs"}
unftp-sbe-fs = { version="0.2.1", path="../unftp-sbe-fs"}
2 changes: 1 addition & 1 deletion crates/unftp-auth-pam/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-auth-pam"
version = "0.2.0"
version = "0.2.1"
description = "An authenticator back-end for libunftp that authenticates against PAM"
authors = [
"Agoston Horvath <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions crates/unftp-auth-rest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-auth-rest"
version = "0.2.0"
version = "0.2.1"
description = "An authenticator back-end for libunftp that consumes an HTTP API to authenticate"
authors = [
"Agoston Horvath <[email protected]>",
Expand Down Expand Up @@ -34,4 +34,4 @@ tracing-attributes = "0.1.21"
[dev-dependencies]
pretty_env_logger = "0.4.0"
tokio = { version = "1.19.2", features = ["macros"] }
unftp-sbe-fs = { version="0.2", path="../unftp-sbe-fs"}
unftp-sbe-fs = { version="0.2.1", path="../unftp-sbe-fs"}
2 changes: 1 addition & 1 deletion crates/unftp-sbe-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp-sbe-fs"
version = "0.2.0"
version = "0.2.1"
description = "A storage back-end for libunftp, storing files on local disk"
authors = [
"Agoston Horvath <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the libunftp and tokio crates to your project's dependencies in `Cargo.toml`
```toml
[dependencies]
libunftp = "0.18.5"
unftp-sbe-fs = "0.2.0"
unftp-sbe-fs = "0.2.1"
tokio = { version = "1", features = ["full"] }
```

Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "unftp-sbe-gcs"
description = "A storage back-end for libunftp, storing files in Google Cloud Storage (GCS)"
version = "0.2.0"
version = "0.2.1"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Add the needed dependencies to Cargo.toml:
```toml
[dependencies]
libunftp = "0.18.5"
unftp-sbe-gcs = "0.2.0"
unftp-sbe-gcs = "0.2.1"
tokio = { version = "1", features = ["full"] }
```

Expand Down
2 changes: 1 addition & 1 deletion crates/unftp-sbe-gcs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//! ```toml
//! [dependencies]
//! libunftp = "0.18.5"
//! unftp-sbe-gcs = "0.2.0"
//! unftp-sbe-gcs = "0.2.1"
//! tokio = { version = "1", features = ["full"] }
//! ```
//!
Expand Down

0 comments on commit c71954d

Please sign in to comment.