From 405585e2c087749ba2a21cdecf5fca60c7401748 Mon Sep 17 00:00:00 2001 From: Marko Kreen Date: Fri, 31 Jul 2020 21:21:35 +0300 Subject: [PATCH] v4.0 --- doc/news.rst | 11 +++++++++-- rarfile.py | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/doc/news.rst b/doc/news.rst index a6f262e..bcf06e7 100644 --- a/doc/news.rst +++ b/doc/news.rst @@ -4,8 +4,15 @@ rarfile history .. py:currentmodule:: rarfile -Unreleased ----------- +Version 4.0 (2020-07-31) +------------------------ + +Main goals are: + +* Increased ``zipfile``-compatibility, thus also achieving smaller + difference between RAR3 and RAR5 archives. +* Removing dependency on ``unrar`` for extract, thus making maintenance + of alternative backends more manageable. Breaking changes: diff --git a/rarfile.py b/rarfile.py index d844b3f..58a59ab 100644 --- a/rarfile.py +++ b/rarfile.py @@ -90,7 +90,7 @@ class AES_CBC_Decrypt: self.decrypt = ciph.decryptor().update -__version__ = "4.0a1" +__version__ = "4.0" # export only interesting items __all__ = ["is_rarfile", "is_rarfile_sfx", "RarInfo", "RarFile", "RarExtFile"] -- 2.11.4.GIT