From f6b8c0097a887cc00ab04aa2036037ddf6cd79db Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Wed, 22 Nov 2023 08:24:20 -0800 Subject: [PATCH] Version 1.45 --- CHANGES | 6 ++++++ psslib/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 55ac153..1c503d4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,12 @@ Changelog ========= ++ Version 1.45 (2023.11.22) + + - Adding support to known files: .txtar, .wat + - Adding .ipynb_checkpoints to IGNORED_DIRS (#74) + - Clean up testing setup; support newer Python versions + + Version 1.44 (2022.06.28) - Fixed a bug in --smart-case with Python 3 (#67) diff --git a/psslib/__init__.py b/psslib/__init__.py index 36c3d25..d30e629 100644 --- a/psslib/__init__.py +++ b/psslib/__init__.py @@ -1 +1 @@ -__version__ = '1.44' +__version__ = '1.45' diff --git a/setup.py b/setup.py index 305650f..67f9c13 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ description='Tool for grepping through source code', long_description=description, license='Public domain', - version='1.44', + version='1.45', author='Eli Bendersky', maintainer='Eli Bendersky', author_email='eliben@gmail.com',