From e89308677fdac3f69322e429f2dc3ae01df40c32 Mon Sep 17 00:00:00 2001
From: Primoz Godec
Date: Mon, 20 Jun 2022 11:55:48 +0200
Subject: [PATCH] Release version 1.8.1
---
CHANGELOG.md | 9 ++++++++-
setup.py | 6 +++---
2 files changed, 11 insertions(+), 4 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6af6534d8..85effe56b 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,12 @@ Change Log
------------
* ...
+[1.8.1] - 2022-06-20
+--------------------
+##### Bugfixes
+* Score Documents - adapt to the latest changes in document embedding ([#866](../../pull/866))
+* Temporary proxy fix
+
[1.8.0] - 2022-06-09
--------------------
##### Enhancements
@@ -357,7 +363,8 @@ Change Log
--------------------
-[next]: https://github.com/biolab/orange3-text/compare/1.8.0...HEAD
+[next]: https://github.com/biolab/orange3-text/compare/1.8.1...HEAD
+[1.8.1]: https://github.com/biolab/orange3-text/compare/1.8.0...1.8.1
[1.8.0]: https://github.com/biolab/orange3-text/compare/1.7.0...1.8.0
[1.7.0]: https://github.com/biolab/orange3-text/compare/1.6.2...1.7.0
[1.6.2]: https://github.com/biolab/orange3-text/compare/1.6.1...1.6.2
diff --git a/setup.py b/setup.py
index 141fad60e..1ae2208fb 100644
--- a/setup.py
+++ b/setup.py
@@ -16,9 +16,9 @@
NAME = 'Orange3-Text'
MAJOR = 1
-MINOR = 9
-MICRO = 0
-IS_RELEASED = False
+MINOR = 8
+MICRO = 1
+IS_RELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
FULL_VERSION = VERSION