Skip to content

Commit

Permalink
Merge branch 'main' into fix_colo
Browse files Browse the repository at this point in the history
  • Loading branch information
flooie authored Nov 21, 2024
2 parents 5d2f9e7 + d6dd494 commit d82a399
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,19 @@ Releases are also tagged in git, if that's helpful.

## Current

**2.6.40 - 2024-11-20**
**2.6.42 - 2024-11-21**

- Fixes:
- Fix `mass` and `massctapp` scrapers, scrape new endpoint
- Exclude "Commomwealth" string from short case names
- Fix `mass` and `massctapp` cleanup content method

## Past

**2.6.40 - 2024-11-20**

- Fixes:
- Fix `mass` and `massctapp` scrapers, scrape new endpoint
- Exclude "Commonwealth" string from short case names

**2.6.39 - 2024-11-18**

- Fixes:
Expand Down
2 changes: 1 addition & 1 deletion juriscraper/opinions/united_states/state/mass.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,4 +83,4 @@ def cleanup_content(content):
new_tree = etree.Element("html")
body = etree.SubElement(new_tree, "body")
body.append(content)
return html.tostring(new_tree, pretty_print=True, encoding="unicode")
return html.tostring(new_tree).decode("utf-8")
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from setuptools import find_packages, setup
from setuptools.command.install import install

VERSION = "2.6.40"
VERSION = "2.6.42"
AUTHOR = "Free Law Project"
EMAIL = "info@free.law"
HERE = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit d82a399

Please sign in to comment.