Skip to content

Commit

Permalink
Release unftp version 0.14.0 (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
robklg authored Dec 8, 2022
1 parent 31e45f5 commit e821b92
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Upcoming
## 2022-12-08 unftp v0.14.0

- The JSON authentication method (`--auth-json-path`) JSON user file (`--usr-json-path`) now support gzipped or gzipped+base64-encoded gzip files.
The compression makes it possible to fit large configuration files in a Kubernetes configmap for example.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp"
version = "0.13.4"
version = "0.14.0"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down
8 changes: 4 additions & 4 deletions docs/server/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ title: Docker
You can download pre-made docker images from [docker hub](https://hub.docker.com/r/bolcom/unftp/tags) e.g.:

```sh
docker pull bolcom/unftp:v0.13.4-alpine
docker pull bolcom/unftp:v0.13.4-alpine-istio
docker pull bolcom/unftp:v0.13.4-scratch
docker pull bolcom/unftp:v0.14.0-alpine
docker pull bolcom/unftp:v0.14.0-alpine-istio
docker pull bolcom/unftp:v0.14.0-scratch
```

Example running unFTP in a Docker container:
Expand All @@ -34,6 +34,6 @@ docker run \
-v /Users/xxx/unftp/unftp.crt:/unftp.crt \
-v /Users/xxx/unftp/the-key.json:/key.json \
-ti \
bolcom/unftp:v0.13.4-alpine
bolcom/unftp:v0.14.0-alpine
```

6 changes: 3 additions & 3 deletions docs/server/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,21 +16,21 @@ you can choose between a statically linked image (no PAM integration) or a dynam
Linux (static, no PAM):

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.13.4/unftp_x86_64-unknown-linux-musl \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.0/unftp_x86_64-unknown-linux-musl \
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
```

Linux (dynamic with PAM support):

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.13.4/unftp_x86_64-unknown-linux-gnu \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.0/unftp_x86_64-unknown-linux-gnu \
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
```

macOS:

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.13.4/unftp_x86_64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.0/unftp_x86_64-apple-darwin \
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
```

Expand Down
2 changes: 1 addition & 1 deletion docs/server/pubsub.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ All of them are of type JSON object. Examples of their format are shown below.
"payload":{
"Startup":{
"libunftp_version":"0.18.3",
"unftp_version":"v0.13.4"
"unftp_version":"v0.14.0"
}
}
}
Expand Down

0 comments on commit e821b92

Please sign in to comment.