From ed79d316f473f6884f97d21128cf91dcfe172977 Mon Sep 17 00:00:00 2001 From: Renato Alves Date: Sun, 7 Apr 2024 21:38:56 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=201.1.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 ++++- firefox_decrypt.py | 2 +- pyproject.toml | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d5ee1..adca208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,9 @@ #### Changelog -##### 1.1.0+git +##### 1.1.1+git +- + +##### 1.1.1 - Fix unhandled exception with deleted passwords - see #99 - Environment variable `NSS_LIB_PATH` can now be used to specify `libnss` location diff --git a/firefox_decrypt.py b/firefox_decrypt.py index 2718dd8..7119729 100755 --- a/firefox_decrypt.py +++ b/firefox_decrypt.py @@ -74,7 +74,7 @@ def get_version() -> str: return p.stdout.strip() -__version_info__ = (1, 1, 0, "+git") +__version_info__ = (1, 1, 1) __version__: str = get_version() diff --git a/pyproject.toml b/pyproject.toml index 5bd9254..381d40b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "firefox-decrypt" -version = "1.0.0" +version = "1.1.1" description = "Firefox Decrypt is a tool to extract passwords from Mozilla (Firefox™, Waterfox™, Thunderbird®, SeaMonkey®) profiles" authors = [{name = "Renato Alves"}] requires-python = ">=3.9"