Skip to content

Commit 88fcf88

Browse files
author
Florian Matter
committed
release v0.1.0
1 parent 3a9d809 commit 88fcf88

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.1.0.dev
2+
current_version = 0.1.0
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+))?
44
serialize =
55
{major}.{minor}.{patch}.{release}

CHANGELOG.md

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9-
## Added
10-
* CLDF dataset creation
11-
* `senses.csv`
9+
## [0.1.0] - 2022-11-27
1210

13-
## Fixed
11+
### Fixed
1412
* lexicon retrieval of clitics
1513
* path handling in CLI
1614

17-
## Changed
15+
### Changed
1816
* re-reimplemented XML extraction
1917

18+
### Added
19+
* CLDF dataset creation
20+
* `senses.csv`
21+
2022
## [0.0.3] -- 2022-10-22
2123

22-
## Fixed
24+
### Fixed
2325
* missing glosses are handled
2426
* all records make it into `sentences.csv`
2527
* empty fields in produced lexicon csv file are handled
2628

27-
## Changed
29+
### Changed
2830
* reimplemented `flex2csv` and `lift2csv` from the ground up with `beautifulsoup`
2931

3032
## [0.0.2] - 2022-10-17
@@ -41,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4143

4244
Initial release
4345

44-
[Unreleased]: https://github.com/fmatter/cldflex/compare/v0.0.3...HEAD
46+
[Unreleased]: https://github.com/fmatter/cldflex/compare/v0.1.0...HEAD
47+
[0.1.0]: https://github.com/fmatter/cldflex/compare/v0.0.3...v0.1.0
4548
[0.0.3]: https://github.com/fmatter/cldflex/releases/tag/v0.0.3
4649
[0.0.2]: https://github.com/fmatter/cldflex/releases/tag/v0.0.2

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ authors:
66
- family-names: Matter
77
given-names: Florian
88
orcid: "https://orcid.org/0000-0002-2545-5154"
9-
date-released: 2022-10-22
10-
version: "0.0.4.dev"
9+
date-released: 2022-11-27
10+
version: "0.1.0"
1111
repository-code: "https://github.com/fmatter/cldflex"
1212
keywords:
1313
- cldf

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project_urls =
2222
Documentation = https://cldflex.readthedocs.io/
2323
Bug Tracker = https://github.com/fmatter/cldflex/issues
2424
url = https://github.com/fmatter/cldflex
25-
version = 0.1.0.dev
25+
version = 0.1.0
2626

2727
[options]
2828
zip_safe = False

src/cldflex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
__author__ = "Florian Matter"
1616
__email__ = "[email protected]"
17-
__version__ = "0.1.0.dev"
17+
__version__ = "0.1.0"

src/cldflex/flex2csv.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@ def load_lexicon(lexicon_file, conf, sep, output_dir="."):
307307
)
308308
return None
309309
if lexicon_file.suffix == ".lift":
310-
log.info(f"Running lift2csv on {lexicon_file.resolve()}")
311310
lexicon = lift2csv(lift_file=lexicon_file, output_dir=output_dir, conf=conf)
312311
elif lexicon_file.suffix == ".csv":
313312
log.info(f"Reading lexicon file {lexicon_file.resolve()}")
@@ -355,7 +354,7 @@ def get_text_id(text):
355354
for abbrev in abbrevs:
356355
if abbrev.text != "" and text_id is None:
357356
text_id = slugify(abbrev.text)
358-
log.info(f"{text_id}")
357+
log.info(f"Read text {text_id} ({abbrev['lang']})")
359358
return text_id
360359

361360

0 commit comments

Comments
 (0)