Skip to content

Commit e96d583

Browse files
chore: version bump to 0.0.87
1 parent 4b56411 commit e96d583

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.0.87
2+
* Return 422 HTTP code when PDF can't be processed
3+
14
## 0.0.86
25
* Patch various CVEs
36

prepline_general/api/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
app = FastAPI(
1414
title="Unstructured Pipeline API",
1515
summary="Partition documents with the Unstructured library",
16-
version="0.0.86",
16+
version="0.0.87",
1717
docs_url="/general/docs",
1818
openapi_url="/general/openapi.json",
1919
servers=[

prepline_general/api/general.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ def return_content_type(filename: str):
618618

619619

620620
@router.get("/general/v0/general", include_in_schema=False)
621-
@router.get("/general/v0.0.86/general", include_in_schema=False)
621+
@router.get("/general/v0.0.87/general", include_in_schema=False)
622622
async def handle_invalid_get_request():
623623
raise HTTPException(
624624
status_code=status.HTTP_405_METHOD_NOT_ALLOWED, detail="Only POST requests are supported."
@@ -633,7 +633,7 @@ async def handle_invalid_get_request():
633633
description="Description",
634634
operation_id="partition_parameters",
635635
)
636-
@router.post("/general/v0.0.86/general", include_in_schema=False)
636+
@router.post("/general/v0.0.87/general", include_in_schema=False)
637637
def general_partition(
638638
request: Request,
639639
# cannot use annotated type here because of a bug described here:

preprocessing-pipeline-family.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
name: general
2-
version: 0.0.86
2+
version: 0.0.87

0 commit comments

Comments
 (0)