Skip to content

Commit

Permalink
Release unFTP v0.14.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesdejager committed Jun 20, 2024
1 parent 142d6e3 commit 6b09d1e
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 12 deletions.
1 change: 1 addition & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ jobs:
trget: x86_64-pc-windows-msvc
BUILD_VERSION: ${{ needs.get_version.outputs.version }}
steps:
- uses: ilammy/setup-nasm@v1
- name: Checkout code
uses: actions/checkout@v3
with:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 2023-12-24 unftp v0.14.7

- Upgraded to libunftp v0.20.1
- Fixed builds on Windows
- Compile with Rust 1.79.0
- [#171](https://github.com/bolcom/unFTP/pull/171) Ability to obtain User info over HTTP with `--usr-http-url`
- [#175](https://github.com/bolcom/unFTP/pull/175) Guard against configuration mistakes leading to security issues

## 2023-12-24 unftp v0.14.6

- Upgraded to libunftp v0.20.0
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.14.6"
version = "0.14.7"
authors = [
"Agoston Horvath <[email protected]>",
"Dávid Kosztka <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion RELEASE-CHECKLIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Wait till MR pipelines are OK then run `make publish`
* Merge the MR via the command line by merging master into the branch and pushing it.
* Create the release in Github using tag format \[{component}-\]{version} e.g.
> v0.14.6
> v0.14.7
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
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.6-alpine
docker pull bolcom/unftp:v0.14.6-alpine-istio
docker pull bolcom/unftp:v0.14.6-scratch
docker pull bolcom/unftp:v0.14.7-alpine
docker pull bolcom/unftp:v0.14.7-alpine-istio
docker pull bolcom/unftp:v0.14.7-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.6-alpine
bolcom/unftp:v0.14.7-alpine
```

8 changes: 4 additions & 4 deletions docs/server/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@ integration:
Linux (static, no PAM):

```sh
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.6/unftp_x86_64-unknown-linux-musl \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.7/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.6/unftp_x86_64-unknown-linux-gnu \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.7/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.6/unftp_x86_64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.7/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/v4/unftp_aarch64-apple-darwin \
curl -L https://github.com/bolcom/unFTP/releases/download/v0.14.7/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 @@ -73,7 +73,7 @@ All of them are of type JSON object. Examples of their format are shown below.
"payload": {
"Startup": {
"libunftp_version": "0.19.1",
"unftp_version": "v0.14.6"
"unftp_version": "v0.14.7"
}
}
}
Expand Down

0 comments on commit 6b09d1e

Please sign in to comment.