Skip to content

Commit 812ac3e

Browse files
committed
Release v0.1.5
1 parent 62424ef commit 812ac3e

10 files changed

Lines changed: 11 additions & 11 deletions

extract_cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@
4343
from pathlib import Path
4444
from typing import Any, Dict, List, Optional, Tuple
4545

46-
__version__ = "0.1.4"
46+
__version__ = "0.1.5"
4747

4848
# Bumped independently of the package version when the *extraction logic*
4949
# changes in a way downstream consumers should notice. Embedded in `_meta`.
50-
EXTRACTOR_VERSION = "0.1.4"
50+
EXTRACTOR_VERSION = "0.1.5"
5151

5252
# JSON Schema version of the output contract (docs/spec/extract-output.schema.json).
5353
SCHEMA_VERSION = 1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "extract-cli"
7-
version = "0.1.4"
7+
version = "0.1.5"
88
description = "Open-loop front door of the contract-ops CLI suite: ingest any contract (.md/.txt/.html/.docx/.pdf) and emit structured JSON."
99
readme = "README.md"
1010
requires-python = ">=3.9"

tests/fixtures/employment_docx.docx.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@
138138
"source": "deterministic"
139139
},
140140
"_meta": {
141-
"extractor_version": "0.1.4",
141+
"extractor_version": "0.1.5",
142142
"tiers_used": [
143143
"deterministic"
144144
],

tests/fixtures/heading_docx.docx.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"source": "none"
134134
},
135135
"_meta": {
136-
"extractor_version": "0.1.4",
136+
"extractor_version": "0.1.5",
137137
"tiers_used": [
138138
"deterministic"
139139
],

tests/fixtures/lease_allcaps.txt.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"source": "deterministic"
134134
},
135135
"_meta": {
136-
"extractor_version": "0.1.4",
136+
"extractor_version": "0.1.5",
137137
"tiers_used": [
138138
"deterministic"
139139
],

tests/fixtures/license_pdf.pdf.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"source": "deterministic"
134134
},
135135
"_meta": {
136-
"extractor_version": "0.1.4",
136+
"extractor_version": "0.1.5",
137137
"tiers_used": [
138138
"deterministic"
139139
],

tests/fixtures/nda_h2.md.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
"source": "none"
144144
},
145145
"_meta": {
146-
"extractor_version": "0.1.4",
146+
"extractor_version": "0.1.5",
147147
"tiers_used": [
148148
"deterministic"
149149
],

tests/fixtures/scanned.pdf.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"source": "none"
4949
},
5050
"_meta": {
51-
"extractor_version": "0.1.4",
51+
"extractor_version": "0.1.5",
5252
"tiers_used": [
5353
"deterministic"
5454
],

tests/fixtures/services_bold.txt.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@
133133
"source": "deterministic"
134134
},
135135
"_meta": {
136-
"extractor_version": "0.1.4",
136+
"extractor_version": "0.1.5",
137137
"tiers_used": [
138138
"deterministic"
139139
],

tests/fixtures/services_html.html.expected.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@
148148
"source": "deterministic"
149149
},
150150
"_meta": {
151-
"extractor_version": "0.1.4",
151+
"extractor_version": "0.1.5",
152152
"tiers_used": [
153153
"deterministic"
154154
],

0 commit comments

Comments
 (0)