diff options
author | Erlang/OTP <otp@erlang.org> | 2021-05-10 16:06:07 +0200 |
---|---|---|
committer | Erlang/OTP <otp@erlang.org> | 2021-05-10 16:06:07 +0200 |
commit | e79b7f9c9a8ecc9afdca4f7cc72f250e0bff2f9d (patch) | |
tree | 88a408d6bf5011253069ea39b75a5c15868b5716 /lib/ftp | |
parent | f238fdbd379882af30445453afd163a09d242e44 (diff) | |
download | erlang-e79b7f9c9a8ecc9afdca4f7cc72f250e0bff2f9d.tar.gz |
Prepare release
Diffstat (limited to 'lib/ftp')
-rw-r--r-- | lib/ftp/doc/src/notes.xml | 38 | ||||
-rw-r--r-- | lib/ftp/vsn.mk | 2 |
2 files changed, 38 insertions, 2 deletions
diff --git a/lib/ftp/doc/src/notes.xml b/lib/ftp/doc/src/notes.xml index e6ce2e3d81..c4f763a6f7 100644 --- a/lib/ftp/doc/src/notes.xml +++ b/lib/ftp/doc/src/notes.xml @@ -33,7 +33,43 @@ <file>notes.xml</file> </header> - <section><title>Ftp 1.0.5</title> + <section><title>Ftp 1.1</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Use OTP supervisor as intended, avoiding surprising + behavior as the killing of the user's process. Also, FTP + state handling logic is improved to avoid race conditions + that could result in unexpected errors.</p> + <p> + Own Id: OTP-16926 Aux Id: ERL-1450, GH-4473 </p> + </item> + <item> + <p>Missing runtime dependencies has been added to this + application.</p> + <p> + Own Id: OTP-17243 Aux Id: PR-4557 </p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p> + Add support for FTPES (explicit FTP over TLS).</p> + <p> + Own Id: OTP-15523 Aux Id: OTP-15352, PR-1968 </p> + </item> + </list> + </section> + +</section> + +<section><title>Ftp 1.0.5</title> <section><title>Fixed Bugs and Malfunctions</title> <list> diff --git a/lib/ftp/vsn.mk b/lib/ftp/vsn.mk index 733b082b21..6c67fa5eaa 100644 --- a/lib/ftp/vsn.mk +++ b/lib/ftp/vsn.mk @@ -19,6 +19,6 @@ # %CopyrightEnd% APPLICATION = ftp -FTP_VSN = 1.0.5 +FTP_VSN = 1.1 PRE_VSN = APP_VSN = "$(APPLICATION)-$(FTP_VSN)$(PRE_VSN)" |