bump version to 1.1.0

Change-Id: I74280e9e982a2414cc20e3e99261f6f554a8ae01
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 58de9d8..8bc6a0c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
 # Version history
 
+## 1.1.0
+
+- Updates recommended RKorAPClient version to 1.1.0
+- fixed bug with fetching result pages with an offset >= 10,000 (=1e+05 ...) [issue #25](https://github.com/KorAP/RKorAPClient/issues)
+- timed out corpus queries are no longer cached (see [issue #7](https://github.com/KorAP/RKorAPClient/issues/7))
+- improved stability of `ci` function
+- improved error handling
+- improved logging
+- added ETAs to logging in verboose mode
+
 ## 1.0.1
 
 - Fixed NULL warning in fetch functions
diff --git a/KorAPClient/__init__.py b/KorAPClient/__init__.py
index b264f97..3392209 100644
--- a/KorAPClient/__init__.py
+++ b/KorAPClient/__init__.py
@@ -16,7 +16,7 @@
 from packaging import version
 from rpy2.robjects.methods import RS4
 
-CURRENT_R_PACKAGE_VERSION = "1.0.0"
+CURRENT_R_PACKAGE_VERSION = "1.1.0"
 
 KorAPClient = packages.importr('RKorAPClient')
 if version.parse(KorAPClient.__version__) < version.parse(CURRENT_R_PACKAGE_VERSION):
diff --git a/pyproject.toml b/pyproject.toml
index 35bb347..82af6e1 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
 [project]
 name = "KorAPClient"
-version = "1.0.1"
+version = "1.1.0"
 description = "Client package to access KorAP's web service API"
 authors = [
     {name = "Marc Kupietz",email = "kupietz@ids-mannheim.de"},