mirror of
https://github.com/Unstructured-IO/unstructured.git
synced 2025-11-08 22:47:47 +00:00
bump: release commit (#317)
* update github ingest outputs * CHANGELOG, test github ingest more often in CI * more changelog detail
This commit is contained in:
parent
350c4230ee
commit
a6f8256148
@ -1,4 +1,4 @@
|
|||||||
## 0.5.1-dev2
|
## 0.5.1
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
||||||
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
* Fixes an error causing JavaScript to appear in the output of `partition_html` sometimes.
|
* Fixes an error causing JavaScript to appear in the output of `partition_html` sometimes.
|
||||||
* Fix several issues with the `requires_dependencies` decorator, including the error message
|
* Fix several issues with the `requires_dependencies` decorator, including the error message
|
||||||
and how it was used.
|
and how it was used, which had caused an error for `unstructured-ingest --github-url ...`.
|
||||||
|
|
||||||
## 0.5.0
|
## 0.5.0
|
||||||
|
|
||||||
|
|||||||
@ -8,8 +8,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"element_id": "d551bbfc9477547e4dce6264d8196c7b",
|
"element_id": "4300054a3c2601f905282a7bc7199044",
|
||||||
"text": "More info available at the Github Project Page",
|
"text": "More info available at the \n\t\tGithub Project Page",
|
||||||
"type": "Title",
|
"type": "Title",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"page_number": 1
|
"page_number": 1
|
||||||
@ -24,9 +24,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"element_id": "43f65b1c5bd47774b25c72e2f96de300",
|
"element_id": "a309823c9d508290682a198270b84bca",
|
||||||
"text": "File Contents\n\nWhatever you put in this text box will be downloaded and saved in the file. If you leave it blank, no file will be downloaded",
|
"text": "File Contents\nWhatever you put in this text box will be downloaded and saved in the file. If you leave it blank, no file will be downloaded",
|
||||||
"type": "UncategorizedText",
|
"type": "NarrativeText",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"page_number": 1
|
"page_number": 1
|
||||||
}
|
}
|
||||||
@ -34,7 +34,7 @@
|
|||||||
{
|
{
|
||||||
"element_id": "53a4db70c6d40ed5206711ed8a255e03",
|
"element_id": "53a4db70c6d40ed5206711ed8a255e03",
|
||||||
"text": "You must have Flash 10 installed to download this file.",
|
"text": "You must have Flash 10 installed to download this file.",
|
||||||
"type": "UncategorizedText",
|
"type": "NarrativeText",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"page_number": 1
|
"page_number": 1
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,10 +3,12 @@
|
|||||||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||||||
cd "$SCRIPT_DIR"/.. || exit 1
|
cd "$SCRIPT_DIR"/.. || exit 1
|
||||||
|
|
||||||
if [[ "$CI" == "true" && "$(( RANDOM % 10))" != "1" ]]; then
|
if [[ "$CI" == "true" ]]; then
|
||||||
# NOTE(crag): proper fix is being tracked here: https://github.com/Unstructured-IO/unstructured/issues/306
|
if [ "$(( RANDOM % 10))" -lt 2 ] ; then
|
||||||
echo "Skipping ingest 90% of github ingest tests to avoid rate limiting issue."
|
# NOTE(crag): proper fix is being tracked here: https://github.com/Unstructured-IO/unstructured/issues/306
|
||||||
exit 0
|
echo "Skipping ingest 80% of github ingest tests to avoid rate limiting issue."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
__version__ = "0.5.1-dev2" # pragma: no cover
|
__version__ = "0.5.1" # pragma: no cover
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user