From 158ca4884b239783f28636826c2e92e1793affed Mon Sep 17 00:00:00 2001 From: dgelessus Date: Tue, 17 Dec 2019 11:28:26 +0100 Subject: [PATCH] Release version 1.7.0 --- README.rst | 4 ++-- rsrcfork/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index ab38b25..7398935 100644 --- a/README.rst +++ b/README.rst @@ -113,8 +113,8 @@ For technical info and documentation about resource files and resources, see the Changelog --------- -Version 1.6.1 (next version) -^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Version 1.7 +^^^^^^^^^^^ * Added a ``raw-decompress`` subcommand to decompress compressed resource data stored in a standalone file rather than as a resource. * Optimized lazy loading of ``Resource`` objects. Previously, resource data would be read from disk whenever a ``Resource`` object was looked up, even if the data itself is never used. Now the resource data is only loaded once the ``data`` (or ``data_raw``) attribute is accessed. diff --git a/rsrcfork/__init__.py b/rsrcfork/__init__.py index 7145409..8a39c9b 100644 --- a/rsrcfork/__init__.py +++ b/rsrcfork/__init__.py @@ -20,7 +20,7 @@ # * Add a new empty section for the next version to the README.rst changelog. # * Commit and push the changes to master. -__version__ = "1.6.1.dev" +__version__ = "1.7.0" __all__ = [ "Resource",