diff --git a/CHANGES b/CHANGES index 2e835ba..ae01a3e 100755 --- a/CHANGES +++ b/CHANGES @@ -1,15 +1,17 @@ ------------------------------------------------------------------------ -CHANGE NOTES FOR 0.1.9 (RELEASED: -) +CHANGE NOTES FOR 0.1.9 (RELEASED: Sep 29, 2021) ------------------------------------------------------------------------ -CORRECTED MAJOR BUGS: +GENERAL CHANGES: - Support bytes body type for `Reply By` (HttpCtrl.Server). https://github.com/annoviko/robotframework-httpctrl/issues/17 -- Response body was used as a response reason (HttpCtrl.Server). +CORRECTED MAJOR BUGS: + +- Fixed bug where response server body was used as a response reason (HttpCtrl.Server). https://github.com/annoviko/robotframework-httpctrl/issues/19 diff --git a/README.rst b/README.rst index e097795..3968841 100755 --- a/README.rst +++ b/README.rst @@ -6,7 +6,7 @@ HttpCtrl library for Robot Framework **RobotFramework-HttpCtrl** is a library for Robot Framework that provides HTTP/HTTPS client and HTTP server (IPv4 and IPv6) services to make REST API testing easy. -**Version**: 0.1.x +**Version**: 0.1.9 **Author**: Andrei Novikov diff --git a/ci/github-ci.sh b/ci/github-ci.sh index f994f59..de1c711 100755 --- a/ci/github-ci.sh +++ b/ci/github-ci.sh @@ -34,6 +34,6 @@ fi # generate documentation echo "Generate documentation for HttpCtrl." cd ../src || exit $EXIT_CODE_INCORRECT_PATH -python3 -m robot.libdoc -v 0.1.8 -F reST HttpCtrl.Client client.html -python3 -m robot.libdoc -v 0.1.8 -F reST HttpCtrl.Server server.html -python3 -m robot.libdoc -v 0.1.8 -F reST HttpCtrl.Json json.html +python3 -m robot.libdoc -v 0.1.9 -F reST HttpCtrl.Client client.html +python3 -m robot.libdoc -v 0.1.9 -F reST HttpCtrl.Server server.html +python3 -m robot.libdoc -v 0.1.9 -F reST HttpCtrl.Json json.html diff --git a/setup.py b/setup.py index 14e7614..a53e3c0 100755 --- a/setup.py +++ b/setup.py @@ -24,7 +24,6 @@ import os from setuptools import setup -from setuptools import find_packages def load_readme():