From 557ed49bce898e887d8cd01b81034aab8b3af6ba Mon Sep 17 00:00:00 2001 From: "Antonio F. G. Sevilla" Date: Wed, 9 Feb 2022 19:18:58 +0100 Subject: [PATCH] Release version 1.3 --- CHANGES.md | 26 ++++++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index c9fba8f..652c78f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,31 @@ # Changelog +## v1.3 + +### New dataset version 2 + +There are four annotation schemas now, one for graphemes, one for logograms, +another one for graph edges, and a final one for meta tags. The logogram +annotation schema is new, but previously this information could be stored in +the meta tags (now they are separate). See below for more about graphs. The new +dataset version in not compatible, so existing datasets need to be migrated. + +### Logogram graphs + +Logograms can now store a graph which connects bound graphemes with edges. These +edges have their own tags and tag schema, and can be used to capture the +compositional or spatial relations between bound graphemes. The dataset +configuration has been updated, as well as the web interface, to allow +annotating these new values. + +### Other + +- Configuration dictionaries are now merged instead of replaced in network, pipeline and dataset configs. +- "Extend" configurations can be chained. +- In the web interface listing, annotations can be filtered according to flags. +- The color list to use in the logogram editor can now be customized. +- Other bug fixes and documentation + ## v1.2 ### Pipelines diff --git a/pyproject.toml b/pyproject.toml index 934d1ec..fd0a0cf 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "quevedo" description = "Tool for managing datasets of images with compositional semantics" -version = "1.3.0-alpha" +version = "1.3.0" authors = ["Antonio F. G. Sevilla "] license = "OSL-3.0" readme = "README.md"