diff --git a/HISTORY.rst b/HISTORY.rst index 9acb5cd10..9c7e4e0bc 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,24 @@ ======= History ======= +0.1.1 + — — — — — — — — - +* Implemented connection with Stave (#440). +* Introduce pipeline consistency check, and enhance pipeline consistency check at the initialization stage (#459, #461, #437). +* Introduce `ftx` package to store non-core ontology (#471). +* Introduce Forte remote processor and service validation (#477, #476) +* Update code formatting with Black (#474) +* Rename references to forte-wrapper in the core code, and remove un-wanted dependencies(#471, #467, #466, #465, #454) +* Added more examples (#469) +* Allow `forte.get` function to take string directly (#452) +* More bug fixes and general interface edits. + +0.1.0 + — — — — — — — — - +* A more stable implementation of Extractor +* Re-organize some packages names to avoid accidental cyclic imports +* Fix a few pipeline control bugs related to selector and caster + 0.0.1a3 (2021–01–13) — — — — — — — — - * Bug fixes on HParams and readers. diff --git a/forte/version.py b/forte/version.py index cae671e0f..20006cc2e 100644 --- a/forte/version.py +++ b/forte/version.py @@ -14,7 +14,7 @@ _MAJOR = "0" _MINOR = "1" -_REVISION = "0post2" +_REVISION = "1" VERSION_SHORT = "{0}.{1}".format(_MAJOR, _MINOR) VERSION = "{0}.{1}.{2}".format(_MAJOR, _MINOR, _REVISION) diff --git a/setup.py b/setup.py index 652923cf0..cf8aa018f 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setuptools.setup( name="forte", - version="0.1.0post2", + version="0.1.1", url="https://github.com/asyml/forte", description="Forte is extensible framework for building composable and "