diff --git a/README.md b/README.md index 4fd613affd8134ecce06932c252fe75deb2efc0b..d50a9106ee08c77c5a59e97632d42e5567ee2fdf 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [](https://git-ce.rwth-aachen.de/wzl-mq-ms/forschung-lehre/lava/unified-device-interface/python/commits/master) # Python Unified Device Interface -Current stable version: 9.3.3 +Current stable version: 9.3.4 ## Installation 1. Install the WZL-UDI package via pip @@ -58,6 +58,9 @@ Funded by the Deutsche Forschungsgemeinschaft (DFG, German Research Foundation) ## Recent changes +**9.3.4** - 2024-03-16 + - fixed semantic name resolution of range profiles + **9.3.3** - 2024-03-15 - fixed streaming functions diff --git a/setup.py b/setup.py index e85302ea5f6430b9c632edc48908fa79ca676145..ae1fef755acc241c1d548fe98072a8cec9ec4b11 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() setup(name='wzl-udi', - version='9.3.3', + version='9.3.4', url='https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python', project_urls={ "Bug Tracker": "https://git-ce.rwth-aachen.de/wzl-mq-public/soil/python/-/issues", diff --git a/src/http/server.py b/src/http/server.py index c8a653e770397fc3f19c65ec3af082cc086f41ab..1697b3068153af1d632dc82c19322879e2d59e64 100644 --- a/src/http/server.py +++ b/src/http/server.py @@ -203,7 +203,7 @@ class HTTPServer(object): profilename = request.url.parts[-2] if request.url.parts[-1] == '' else request.url.parts[-1] - if len(profilename) > 12 and profilename[-12:-8] == 'Range': + if len(profilename) > 12 and profilename[-12:-7] == 'Range': filename = profilename.replace('RangeProfile', '.shacl.ttl') else: filename = profilename.replace('Profile', '.shacl.ttl')