From 9455752f9b217881248970253df50c6ec7c685ab Mon Sep 17 00:00:00 2001
From: PrimozGodec
Date: Thu, 6 Oct 2022 12:50:09 +0200
Subject: [PATCH] Release version 1.12.0
---
CHANGELOG.md | 12 +++++++++++-
setup.py | 2 +-
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b61ba28e8..c160040e0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,15 @@ Change Log
------------
* ...
+[1.12.0] - 2022-10-06
+--------------------
+##### Bugfixes
+* Ontology - remove cache and other fixes ([#896](../../pull/896))
+* VectorizationComputeValue - fix unpickling old pickles ([#904](../../pull/904))
+* Keywords/Score Documents - fix ctrl/cmd selection ([#902](../../pull/902))
+* Word Enrichment - fix PyQt6 incompatibility and sort imports ([#901](../../pull/901))
+* VectorizationComputeValue - remove wrongly set "original" variable ([#900](../../pull/900))
+
[1.11.0] - 2022-08-24
--------------------
##### Enhancements
@@ -388,7 +397,8 @@ Change Log
--------------------
-[next]: https://github.com/biolab/orange3-text/compare/1.11.0...HEAD
+[next]: https://github.com/biolab/orange3-text/compare/1.12.0...HEAD
+[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
[1.10.0]: https://github.com/biolab/orange3-text/compare/1.9.0...1.10.0
[1.9.0]: https://github.com/biolab/orange3-text/compare/1.8.1...1.9.0
diff --git a/setup.py b/setup.py
index 09cb36f9e..ebae6f71f 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@
MAJOR = 1
MINOR = 12
MICRO = 0
-IS_RELEASED = False
+IS_RELEASED = True
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
FULL_VERSION = VERSION