From 6258c851b8e23b912fe2fd5d3fd3b1e2223c38aa Mon Sep 17 00:00:00 2001 From: Gianfranco Rossi Date: Thu, 12 Dec 2024 11:30:33 -0500 Subject: [PATCH] version bump v2.6.47 --- CHANGES.md | 13 +++++++++++-- setup.py | 2 +- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ede6e4cce..040356b6a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -16,13 +16,22 @@ Releases are also tagged in git, if that's helpful. ## Current -**2.6.46 - 2024-12-10** +**2.6.47 - 2024-12-12** - Fixes: - - Support for parsing the new format of appellate attachment pages has been added + - standardize usage of download methods in scrapers (_download, _request_url_get, _request_url_post) + - refactor scrapers to do not return "Per Curiam" as value for "author_str" or "judges" + +- Features + - added `extract_from_text` to `sc` ## Past +**2.6.46 - 2024-12-10** + +- Fixes: + - Support for parsing the new format of appellate attachment pages has been added + **2.6.45 - 2024-12-05** - Features: diff --git a/setup.py b/setup.py index 1735a3a0c..a2ed058de 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.46" +VERSION = "2.6.47" AUTHOR = "Free Law Project" EMAIL = "info@free.law" HERE = os.path.abspath(os.path.dirname(__file__))