From 6d50bf7c5cd69b9827981b53233995ded5db4ad9 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Wed, 25 Oct 2023 23:11:25 +0200 Subject: [PATCH] pre release Signed-off-by: Giampaolo Rodola --- HISTORY.rst | 4 ++-- README.rst | 6 ++---- pyftpdlib/__init__.py | 2 +- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index c074a62c..3e78eff8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,7 @@ Bug tracker at https://github.com/giampaolo/pyftpdlib/issues -Version: 1.5.9 - IN DEVELOPMENT -=============================== +Version: 1.5.9 - 2023-10-25 +=========================== **Enhancements** diff --git a/README.rst b/README.rst index 6404e20d..55aa4737 100644 --- a/README.rst +++ b/README.rst @@ -85,19 +85,17 @@ Features `multiple thread / process `__ model (as in: you'll be free to block or use slow filesystems). - Portable: entirely written in pure Python; works with Python **2.7** and - **3.X** by using a single code base. + **3.X** using a single code base. - Supports **FTPS** (`RFC-4217 `__), **IPv6** (`RFC-2428 `__), **Unicode** file names (`RFC-2640 `__), **MLSD/MLST** commands (`RFC-3659 `__). - Support for virtual users and virtual filesystem. -- Extremely flexible system of "authorizers" able to manage both "virtual" and +- Flexible system of "authorizers" able to manage both "virtual" and "real" users on on both `UNIX `__ and `Windows `__. -- `Test coverage `__ - close to 100%. Performances ============ diff --git a/pyftpdlib/__init__.py b/pyftpdlib/__init__.py index 6584ee98..9e7427ea 100644 --- a/pyftpdlib/__init__.py +++ b/pyftpdlib/__init__.py @@ -68,6 +68,6 @@ class used to interact with the file system, providing a high level, """ -__ver__ = '1.5.8' +__ver__ = '1.5.9' __author__ = "Giampaolo Rodola' " __web__ = 'https://github.com/giampaolo/pyftpdlib/'