From 94a114c5b0599ed5a4fa8f75de0747d1808c700b Mon Sep 17 00:00:00 2001
From: PrimozGodec
Date: Thu, 11 May 2023 08:56:22 +0200
Subject: [PATCH] Release version 1.13.1
---
CHANGELOG.md | 8 +++++++-
setup.py | 6 +++---
2 files changed, 10 insertions(+), 4 deletions(-)
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