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"