Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version bump v2.6.54 #1310

Merged
merged 1 commit into from
Jan 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- run: python -m pip install -U packaging
- uses: casperdcl/deploy-pypi@v2
with:
password: ${{ secrets.pypi_token }}
Expand Down
11 changes: 10 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,16 @@ Releases are also tagged in git, if that's helpful.

## Current

**2.6.54 - 2024-01-24**

- Fixes:
- `ca6` oral argument scraper is no longer failing
- update the pypi.yml github actions workflow to solve a bug with twine and
packaging packages interaction. It now forces the update of packaging
- due to that bug, we discarded the 2.6.53 version

## Past

**2.6.52 - 2024-01-20**

- Fixes:
Expand Down Expand Up @@ -68,7 +78,6 @@ Releases are also tagged in git, if that's helpful.
- Features
- added `extract_from_text` to `sc`

## Past

**2.6.46 - 2024-12-10**

Expand Down
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.52"
VERSION = "2.6.54"
AUTHOR = "Free Law Project"
EMAIL = "[email protected]"
HERE = os.path.abspath(os.path.dirname(__file__))
Expand Down
Loading