From b86f4347aabc99eed2e64cb4bc45e38a65f9ff3f Mon Sep 17 00:00:00 2001 From: Gianfranco Rossi Date: Fri, 10 Jan 2025 13:42:11 -0500 Subject: [PATCH] version bump v2.6.50 --- CHANGES.md | 14 ++++++++++++++ setup.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index d8af5d4ae..f1edc5e30 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -16,6 +16,20 @@ Releases are also tagged in git, if that's helpful. ## Current +**2.6.50 - 2024-01-10** + +- Fixes: + - add tests to ensure that `extract_from_text` does not fail + when it does not find what it looks for; and that it always + returns a dict + - updated `pasuperct`, `bia`, `bap1`, `nm` and `sd` `extract_from_text` methods + - refactored `pacer.email._parse_bankruptcy_short_description` + - added tests for new courts `flsb`, `nceb` + - added tests for multi docket NEFs + +- Features + - `pacer.email._parse_bankruptcy_short_description` now supports Multi Docket NEFs + **2.6.49 - 2024-01-08** - Fixes: diff --git a/setup.py b/setup.py index 7051712c0..ccb51b005 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import find_packages, setup from setuptools.command.install import install -VERSION = "2.6.49" +VERSION = "2.6.50" AUTHOR = "Free Law Project" EMAIL = "info@free.law" HERE = os.path.abspath(os.path.dirname(__file__))