diff --git a/CHANGELOG.md b/CHANGELOG.md index 92d38ec03..dd2883a90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ Change Log ------------ * ... +[1.13.1] - 2023-05-11 +-------------------- +##### Bugfixes +* import_documents - replace lxml xml parser with ElementTree ([#973](../../pull/973)) + [1.13.0] - 2023-04-26 -------------------- ##### Enhancements @@ -428,7 +433,8 @@ Change Log -------------------- -[next]: https://github.com/biolab/orange3-text/compare/1.13.0...HEAD +[next]: https://github.com/biolab/orange3-text/compare/1.13.1...HEAD +[1.13.1]: https://github.com/biolab/orange3-text/compare/1.13.0...1.13.1 [1.13.0]: https://github.com/biolab/orange3-text/compare/1.12.0...1.13.0 [1.12.0]: https://github.com/biolab/orange3-text/compare/1.11.0...1.12.0 [1.11.0]: https://github.com/biolab/orange3-text/compare/1.10.0...1.11.0 diff --git a/setup.py b/setup.py index a9a37d061..6738f4c61 100644 --- a/setup.py +++ b/setup.py @@ -16,9 +16,9 @@ NAME = 'Orange3-Text' MAJOR = 1 -MINOR = 14 -MICRO = 0 -IS_RELEASED = False +MINOR = 13 +MICRO = 1 +IS_RELEASED = True VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) FULL_VERSION = VERSION