From 7f9f3b1edbfd04a7b2c29dbe0e40d49ea5b89a31 Mon Sep 17 00:00:00 2001 From: Ariff Jeff Date: Sun, 21 Jan 2024 01:36:23 -0500 Subject: [PATCH] 2.0.5 --- pyproject.toml | 2 +- reemployct_data_entry/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d1e5361..ca60d82 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "reemployct-data-entry" -version = "2.0.4" +version = "2.0.5" description = "Automated entry of job application data into Connecticut's DOL ReEmployCT portal." authors = ["Ariff Jeff "] readme = "README.md" diff --git a/reemployct_data_entry/__init__.py b/reemployct_data_entry/__init__.py index 2cb3a7d..5c99963 100644 --- a/reemployct_data_entry/__init__.py +++ b/reemployct_data_entry/__init__.py @@ -3,12 +3,12 @@ PACKAGE_NAME = 'reemployct_data_entry' # can't use stdlib importlib.metadata here because remote tests will fail due to needing the package build -__version__ = "2.0.4" +__version__ = "2.0.5" # on `import reemployct_data_entry`, print the excel job data template file path for user convenience if __name__ == PACKAGE_NAME: colorama.init() # init colored text to work on Windows - + from reemployct_data_entry.lib import filepaths EXCEL_FILENAME = 'workSearch_template.xlsx'