-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
785ffd4
commit 67d9f22
Showing
6 changed files
with
48 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Changelog | ||
|
||
## 2021-05-02 unftp v0.12.9 | ||
|
||
_tag: v0.12.9_ | ||
|
||
- Added Mutual TLS support with the addition of the `--ftps-client-auth` and `--ftps-trust-store` arguments. | ||
- The JSON authentication method (`--auth-json-path`) now supports encryption through | ||
[PBKDF2](https://tools.ietf.org/html/rfc2898#section-5.2) encoded passwords. See the | ||
[unftp-auth-jsonfile](https://docs.rs/unftp-auth-jsonfile/0.1.1/unftp_auth_jsonfile/) documentation for an example. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "unftp" | ||
version = "0.12.8" | ||
version = "0.12.9" | ||
authors = [ | ||
"Agoston Horvath <[email protected]>", | ||
"Dávid Kosztka <[email protected]>", | ||
|
@@ -45,7 +45,7 @@ unftp-auth-rest = { version = "0.1", optional = true } | |
unftp-auth-jsonfile = { version = "0.1.1", optional = true } | ||
|
||
## Build conflict fixes | ||
tracing = "0.1.25" | ||
tracing = "0.1.26" | ||
|
||
[target.'cfg(unix)'.dependencies] | ||
unftp-auth-pam = { version = "0.1", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Release Checklist | ||
|
||
* Update minor versions dependencies | ||
* Update Cargo.toml with the new version number | ||
* Search for the old version number to find references to it in documentation and update those occurrences. | ||
* Run `make pr-prep`, ensuring everything is green | ||
* Prepare release notes for the Github release page | ||
* Make a new commit (don't push) indicating the crate name and version number e.g. | ||
> Release unftp version x.y.x | ||
or | ||
|
||
> Release slog-redis version x.y.x | ||
* Run `make publish` | ||
* Push to Github | ||
* Create the release in Github using tag format \[{component}-\]{version} e.g. | ||
> v0.12.9 | ||
or | ||
> slog-redis-v0.1.2 | ||
* Create the artifacts: `make release-artifacts` and add to Github | ||
* Build and push the docker containers | ||
* Notify the Telegram channel. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters