Skip to content

Commit

Permalink
chore: Release annatto version 0.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinKl committed Nov 20, 2024
1 parent 9404a04 commit a4795be
Show file tree
Hide file tree
Showing 6 changed files with 1,105 additions and 757 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.19.0] - 2024-11-20

### Added

- import `meta` additionally supports csv tables
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ abstract: >-
representation and already provides a basic set of data
handling modules.
license: Apache-2.0
version: 0.18.0
date-released: '2024-10-15'
version: 0.19.0
date-released: '2024-11-20'
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ homepage = "https://github.com/korpling/annatto/"
license = "Apache-2.0"
name = "annatto"
repository = "https://github.com/korpling/annatto/"
version = "0.18.0"
version = "0.19.0"

[dependencies]
ansi_term = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ To show information about modules for the given format or graph operation use
annatto info <name>
```

The documentation for the modules are also included [here](https://github.com/korpling/annatto/blob/v0.18.0/docs/README.md).
The documentation for the modules are also included [here](https://github.com/korpling/annatto/blob/v0.19.0/docs/README.md).

## Creating a workflow file

Expand Down
20 changes: 19 additions & 1 deletion docs/importers/meta.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,23 @@ Works similar to the Pepper configuration value
[`pepper.before.readMeta`](https://corpus-tools.org/pepper/generalCustomizationProperties.html)
and imports metadata property files for documents and corpora by using the file
name as path to the document.
Alternatively, you can import csv-tables, that specify the target node in a specific column. The
header of said column has to be provided as `identifier`, which also needs to be a used annotation
key found in the corpus graph at the target node.

Example (for csv files):
```toml
[import.config]
identifier = { ns = "annis", name = "doc" } # this is the default and can be omitted
```

## Configuration

### identifier

*No description*

### delimiter

*No description*

*No Configuration*
Loading

0 comments on commit a4795be

Please sign in to comment.