From c5120c0b3e63a5daa428835d39bff81b64a3bdc6 Mon Sep 17 00:00:00 2001 From: Andy Smith Date: Sun, 20 Feb 2022 02:35:17 -0500 Subject: [PATCH] release 1.0.2 --- installer.iss | 2 +- registryspy/helpers.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer.iss b/installer.iss index 961e7df..807ba78 100644 --- a/installer.iss +++ b/installer.iss @@ -2,7 +2,7 @@ ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! #define AppName "Registry Spy" -#define AppVersion "1.0.1" +#define AppVersion "1.0.2" #define AppPublisher "Andy Smith" #define AppURL "https://ajsmith.us/projects/registry-spy/" #define AppExeName "registryspy.exe" diff --git a/registryspy/helpers.py b/registryspy/helpers.py index c754c19..f031a20 100644 --- a/registryspy/helpers.py +++ b/registryspy/helpers.py @@ -5,7 +5,7 @@ APP_NAME = "Registry Spy" -VERSION = (1, 0, 0) +VERSION = (1, 0, 2) ORGANIZATION_NAME = "Andy Smith" ORGANIZATION_DOMAIN = "ajsmith.us" ABOUT_TEXT = f"""\ diff --git a/setup.py b/setup.py index d8db3ff..ab6dd82 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="registryspy", - version="1.0.1", + version="1.0.2", author="Andy Smith", description="Cross-platform Windows Registry browser", long_description=long_description,