Skip to content

Commit

Permalink
Release unftp version 0.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdejager committed Jun 16, 2023
1 parent d754c48 commit d5c2e5c
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 2023-06-16 unftp v0.14.3

- Upgraded to latest version of the GCS back-end

## 2023-06-02 unftp v0.14.2

- [#151](https://github.com/bolcom/unFTP/pull/151) Restart when receiving the HUP signal
Expand Down
22 changes: 11 additions & 11 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unftp"
version = "0.14.2"
version = "0.14.3"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down Expand Up @@ -40,8 +40,8 @@ hyper-rustls = "0.23.2"
lazy_static = "1.4.0"
libunftp = "0.18.9"
prometheus = { version = "0.13.3", features = ["process"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.97"
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }
slog-async = "2.7.0"
slog-term = "2.9.0"
Expand Down
2 changes: 1 addition & 1 deletion RELEASE-CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* Run `make publish`
* Push to Github
* Create the release in Github using tag format \[{component}-\]{version} e.g.
> v0.12.12
> v0.14.03
or
> slog-redis-v0.1.2
* Wait for the Github Actions pipeline to finish. You should see all artifacts in the release page.
Expand Down
2 changes: 1 addition & 1 deletion crates/redislog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ chrono = "0.4.26"
r2d2 = "0.8.10"
r2d2_redis = "0.14.0"
redis = "0.20.2"
serde_json = "1.0.96"
serde_json = "1.0.97"
slog = { version = "2.7.0", features = ["max_level_trace", "release_max_level_info"] }

[dev-dependencies]
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.14.2-alpine
docker pull bolcom/unftp:v0.14.2-alpine-istio
docker pull bolcom/unftp:v0.14.2-scratch
docker pull bolcom/unftp:v0.14.3-alpine
docker pull bolcom/unftp:v0.14.3-alpine-istio
docker pull bolcom/unftp:v0.14.3-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.14.2-alpine
bolcom/unftp:v0.14.3-alpine
```

8 changes: 4 additions & 4 deletions docs/server/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,28 +16,28 @@ 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.14.2/unftp_x86_64-unknown-linux-musl \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.3/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.14.2/unftp_x86_64-unknown-linux-gnu \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.3/unftp_x86_64-unknown-linux-gnu \
| sudo tee /usr/local/bin/unftp > /dev/null && sudo chmod +x /usr/local/bin/unftp
```

macOS Intel:

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

macOS ARM:

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.2/unftp_aarch64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.3/unftp_aarch64-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.14.2"
"unftp_version":"v0.14.3"
}
}
}
Expand Down

0 comments on commit d5c2e5c

Please sign in to comment.