Skip to content

Commit a5046a4

Browse files
committed
bump version to 1.1.0
Change-Id: I74280e9e982a2414cc20e3e99261f6f554a8ae01
1 parent 771579c commit a5046a4

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Version history
22

3+
## 1.1.0
4+
5+
- Updates recommended RKorAPClient version to 1.1.0
6+
- fixed bug with fetching result pages with an offset >= 10,000 (=1e+05 ...) [issue #25](https://github.com/KorAP/RKorAPClient/issues)
7+
- timed out corpus queries are no longer cached (see [issue #7](https://github.com/KorAP/RKorAPClient/issues/7))
8+
- improved stability of `ci` function
9+
- improved error handling
10+
- improved logging
11+
- added ETAs to logging in verboose mode
12+
313
## 1.0.1
414

515
- Fixed NULL warning in fetch functions

KorAPClient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from packaging import version
1717
from rpy2.robjects.methods import RS4
1818

19-
CURRENT_R_PACKAGE_VERSION = "1.0.0"
19+
CURRENT_R_PACKAGE_VERSION = "1.1.0"
2020

2121
KorAPClient = packages.importr('RKorAPClient')
2222
if version.parse(KorAPClient.__version__) < version.parse(CURRENT_R_PACKAGE_VERSION):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "KorAPClient"
3-
version = "1.0.1"
3+
version = "1.1.0"
44
description = "Client package to access KorAP's web service API"
55
authors = [
66
{name = "Marc Kupietz",email = "[email protected]"},

0 commit comments

Comments
 (0)