File tree Expand file tree Collapse file tree 3 files changed +27
-4
lines changed Expand file tree Collapse file tree 3 files changed +27
-4
lines changed Original file line number Diff line number Diff line change 1
1
## History / Changelog
2
2
3
3
4
+ ### 1.9.0
5
+
6
+ Extraction:
7
+ - add markdown as explicit output (#550 )
8
+ - improve recall preset (#571 )
9
+ - speedup for readability-lxml (#547 )
10
+ - add global options object for extraction and use it in CLI (#552 )
11
+ - fix: better encoding detection (#548 )
12
+ - recall: fix for lists inside tables with @mikhainin (#534 )
13
+ - add symbol to preserve vertical spacing in Markdown (#499 )
14
+ - fix: table cell separators in non-XML output (#563 )
15
+ - slightly better accuracy and execution speed overall
16
+
17
+ Metadata:
18
+ - add file creation date (date extraction, JSON & XML-TEI) (#561 )
19
+ - fix: empty content in meta tag by @felipehertzer (#545 )
20
+
21
+ Maintenance:
22
+ - restructure and simplify code (#543 , #556 )
23
+ - CLI & downloads: revamp and use global options (#565 )
24
+ - eval: review code, add guidelines and small benchmark (#542 )
25
+ - fix: raise error if config file does not exist (#554 )
26
+ - deprecate ` process_record() ` (#549 )
27
+ - docs: convert readme to markdown and update info (#564 , #578 )
28
+
29
+
4
30
### 1.8.1
5
31
6
32
Maintenance:
Original file line number Diff line number Diff line change @@ -19,9 +19,6 @@ def get_long_description():
19
19
"Return the README"
20
20
with open ("README.md" , "r" , encoding = "utf-8" ) as filehandle :
21
21
long_description = filehandle .read ()
22
- # long_description += "\n\n"
23
- # with open("CHANGELOG.md", encoding="utf8") as f:
24
- # long_description += f.read()
25
22
return long_description
26
23
27
24
Original file line number Diff line number Diff line change 9
9
__author__ = 'Adrien Barbaresi and contributors'
10
10
__license__ = "Apache-2.0"
11
11
__copyright__ = 'Copyright 2019-2024, Adrien Barbaresi'
12
- __version__ = '1.8.1 '
12
+ __version__ = '1.9.0 '
13
13
14
14
15
15
import logging
You can’t perform that action at this time.
0 commit comments